Struct freya_engine::prelude::Weight
#[repr(transparent)]pub struct Weight(_);
Expand description
Wrapper type of a font weight.
Use Weight::from() to create a weight from an i32. Use *weight to pull out the wrapped value of the Weight.
Implementations§
§impl Weight
impl Weight
pub const INVISIBLE: Weight = Self(SkFontStyle_Weight::kInvisible_Weight as _)
pub const THIN: Weight = Self(SkFontStyle_Weight::kThin_Weight as _)
pub const EXTRA_LIGHT: Weight = Self(SkFontStyle_Weight::kExtraLight_Weight as _)
pub const LIGHT: Weight = Self(SkFontStyle_Weight::kLight_Weight as _)
pub const NORMAL: Weight = Self(SkFontStyle_Weight::kNormal_Weight as _)
pub const MEDIUM: Weight = Self(SkFontStyle_Weight::kMedium_Weight as _)
pub const SEMI_BOLD: Weight = Self(SkFontStyle_Weight::kSemiBold_Weight as _)
pub const BOLD: Weight = Self(SkFontStyle_Weight::kBold_Weight as _)
pub const EXTRA_BOLD: Weight = Self(SkFontStyle_Weight::kExtraBold_Weight as _)
pub const BLACK: Weight = Self(SkFontStyle_Weight::kBlack_Weight as _)
pub const EXTRA_BLACK: Weight = Self(SkFontStyle_Weight::kExtraBlack_Weight as _)
Methods from Deref<Target = i32>§
pub const MIN: i32 = -2_147_483_648i32
pub const MAX: i32 = 2_147_483_647i32
pub const BITS: u32 = 32u32
Trait Implementations§
§impl Ord for Weight
impl Ord for Weight
§impl PartialOrd<Weight> for Weight
impl PartialOrd<Weight> for Weight
§fn partial_cmp(&self, other: &Weight) -> Option<Ordering>
fn partial_cmp(&self, other: &Weight) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for Weight
impl Eq for Weight
impl StructuralEq for Weight
impl StructuralPartialEq for Weight
Auto Trait Implementations§
impl RefUnwindSafe for Weight
impl Send for Weight
impl Sync for Weight
impl Unpin for Weight
impl UnwindSafe for Weight
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