Struct wr_glyph_rasterizer::platform::unix::font::FT_Var_Axis
source · #[repr(C)]struct FT_Var_Axis {
pub name: *mut FT_String,
pub minimum: FT_Fixed,
pub def: FT_Fixed,
pub maximum: FT_Fixed,
pub tag: FT_ULong,
pub strid: FT_UInt,
}
Fields§
§name: *mut FT_String
§minimum: FT_Fixed
§def: FT_Fixed
§maximum: FT_Fixed
§tag: FT_ULong
§strid: FT_UInt
Auto Trait Implementations§
impl Freeze for FT_Var_Axis
impl RefUnwindSafe for FT_Var_Axis
impl !Send for FT_Var_Axis
impl !Sync for FT_Var_Axis
impl Unpin for FT_Var_Axis
impl UnwindSafe for FT_Var_Axis
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
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more