Struct ttf_parser::VariationAxis[][src]

#[repr(C)]
pub struct VariationAxis { pub tag: Tag, pub min_value: f32, pub def_value: f32, pub max_value: f32, pub name_id: u16, pub hidden: bool, }

A variation axis.

Fields

tag: Tagmin_value: f32def_value: f32max_value: f32name_id: u16

An axis name in the name table.

hidden: bool

Trait Implementations

impl Clone for VariationAxis[src]

impl Copy for VariationAxis[src]

impl Debug for VariationAxis[src]

impl PartialEq<VariationAxis> for VariationAxis[src]

impl StructuralPartialEq for VariationAxis[src]

Auto Trait Implementations

impl RefUnwindSafe for VariationAxis

impl Send for VariationAxis

impl Sync for VariationAxis

impl Unpin for VariationAxis

impl UnwindSafe for VariationAxis

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.