Struct ab_glyph::VariationAxis
source · #[non_exhaustive]pub struct VariationAxis {
pub tag: [u8; 4],
pub name: Option<String>,
pub min_value: f32,
pub default_value: f32,
pub max_value: f32,
pub hidden: bool,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.tag: [u8; 4]
Tag identifying the design variation for the axis.
name: Option<String>
Unicode name.
min_value: f32
The minimum coordinate value for the axis.
default_value: f32
The default coordinate value for the axis.
max_value: f32
The maximum coordinate value for the axis.
Whether the axis should be exposed directly in user interfaces.
Trait Implementations§
source§impl Clone for VariationAxis
impl Clone for VariationAxis
source§fn clone(&self) -> VariationAxis
fn clone(&self) -> VariationAxis
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl RefUnwindSafe for VariationAxis
impl Send for VariationAxis
impl Sync for VariationAxis
impl Unpin for VariationAxis
impl UnwindSafe for VariationAxis
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more