pub enum CssFontStyle {
Normal,
Italic,
Oblique,
}Expand description
An enumeration representing a CSS font style.
Variants§
Trait Implementations§
Source§impl Clone for CssFontStyle
impl Clone for CssFontStyle
Source§fn clone(&self) -> CssFontStyle
fn clone(&self) -> CssFontStyle
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 CssFontStyle
impl Debug for CssFontStyle
Source§impl Display for CssFontStyle
impl Display for CssFontStyle
Source§impl From<CssFontStyle> for CssValue
impl From<CssFontStyle> for CssValue
Source§fn from(value: CssFontStyle) -> Self
fn from(value: CssFontStyle) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for CssFontStyle
impl RefUnwindSafe for CssFontStyle
impl Send for CssFontStyle
impl Sync for CssFontStyle
impl Unpin for CssFontStyle
impl UnwindSafe for CssFontStyle
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