#[repr(C)]pub enum FontWeightMessage {
Thin = 0,
ExtraLight = 1,
Light = 2,
Normal = 3,
Medium = 4,
SemiBold = 5,
Bold = 6,
ExtraBold = 7,
Black = 8,
}Expand description
Serializable font-weight value.
Variants§
Thin = 0
ExtraLight = 1
Light = 2
Normal = 3
Medium = 4
SemiBold = 5
Bold = 6
ExtraBold = 7
Black = 8
Trait Implementations§
Source§impl Clone for FontWeightMessage
impl Clone for FontWeightMessage
Source§impl Debug for FontWeightMessage
impl Debug for FontWeightMessage
Source§impl PartialEq for FontWeightMessage
impl PartialEq for FontWeightMessage
Source§impl Serialize for FontWeightMessage
impl Serialize for FontWeightMessage
impl StructuralPartialEq for FontWeightMessage
Auto Trait Implementations§
impl Freeze for FontWeightMessage
impl RefUnwindSafe for FontWeightMessage
impl Send for FontWeightMessage
impl Sync for FontWeightMessage
impl Unpin for FontWeightMessage
impl UnsafeUnpin for FontWeightMessage
impl UnwindSafe for FontWeightMessage
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