pub enum FontStretch {
UltraCondensed,
ExtraCondensed,
Condensed,
SemiCondensed,
Normal,
SemiExpanded,
Expanded,
ExtraExpanded,
UltraExpanded,
}
Expand description
A font stretch.
Variants§
UltraCondensed
Ultra-condensed font stretch.
ExtraCondensed
Extra-condensed font stretch.
Condensed
Condensed font stretch.
SemiCondensed
Semi-condensed font stretch.
Normal
Normal font stretch, the default.
SemiExpanded
Semi-expanded font stretch.
Expanded
Expanded font stretch.
ExtraExpanded
Extra-expanded font stretch.
UltraExpanded
Ultra-expanded font stretch.
Trait Implementations§
Source§impl Clone for FontStretch
impl Clone for FontStretch
Source§fn clone(&self) -> FontStretch
fn clone(&self) -> FontStretch
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 moreSource§impl Debug for FontStretch
impl Debug for FontStretch
Source§impl Default for FontStretch
impl Default for FontStretch
Source§fn default() -> FontStretch
fn default() -> FontStretch
Returns the “default value” for a type. Read more
Source§impl From<&str> for FontStretch
impl From<&str> for FontStretch
Source§fn from(stretch: &str) -> FontStretch
fn from(stretch: &str) -> FontStretch
Converts to this type from the input type.
Source§impl From<String> for FontStretch
impl From<String> for FontStretch
Source§fn from(stretch: String) -> FontStretch
fn from(stretch: String) -> FontStretch
Converts to this type from the input type.
Source§impl Hash for FontStretch
impl Hash for FontStretch
Source§impl PartialEq for FontStretch
impl PartialEq for FontStretch
impl Copy for FontStretch
impl Eq for FontStretch
impl StructuralPartialEq for FontStretch
Auto Trait Implementations§
impl Freeze for FontStretch
impl RefUnwindSafe for FontStretch
impl Send for FontStretch
impl Sync for FontStretch
impl Unpin for FontStretch
impl UnwindSafe for FontStretch
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