pub enum Style {
Normal,
Italic,
Oblique(Option<f32>),
}
Expand description
Visual style or ‘slope’ of a font.
In variable fonts, this can be controlled with the ital
and slnt
axes for italic and oblique styles, respectively.
Variants§
Normal
An upright or “roman” style.
Italic
Generally a slanted style, originally based on semi-cursive forms. This often has a different structure from the normal style.
Oblique(Option<f32>)
Oblique (or slanted) style with an optional angle in degrees, counter-clockwise from the vertical.
Trait Implementations§
impl Copy for Style
impl StructuralPartialEq for Style
Auto Trait Implementations§
impl Freeze for Style
impl RefUnwindSafe for Style
impl Send for Style
impl Sync for Style
impl Unpin for Style
impl UnwindSafe for Style
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)