#[repr(u32)]pub enum StretchType {
Undefined = 0,
Normal = 1,
UltraCondensed = 2,
ExtraCondensed = 3,
Condensed = 4,
SemiCondensed = 5,
SemiExpanded = 6,
Expanded = 7,
ExtraExpanded = 8,
UltraExpanded = 9,
Any = 10,
}
Variants§
Undefined = 0
Normal = 1
UltraCondensed = 2
ExtraCondensed = 3
Condensed = 4
SemiCondensed = 5
SemiExpanded = 6
Expanded = 7
ExtraExpanded = 8
UltraExpanded = 9
Any = 10
Trait Implementations§
Source§impl Clone for StretchType
impl Clone for StretchType
Source§fn clone(&self) -> StretchType
fn clone(&self) -> StretchType
Returns a duplicate 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 moreSource§impl Debug for StretchType
impl Debug for StretchType
Source§impl Hash for StretchType
impl Hash for StretchType
Source§impl PartialEq for StretchType
impl PartialEq for StretchType
impl Copy for StretchType
impl Eq for StretchType
impl StructuralPartialEq for StretchType
Auto Trait Implementations§
impl Freeze for StretchType
impl RefUnwindSafe for StretchType
impl Send for StretchType
impl Sync for StretchType
impl Unpin for StretchType
impl UnwindSafe for StretchType
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