#[non_exhaustive]pub enum FontName {
Arial,
Georgia,
}
Expand description
The name of a text font.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
impl Copy for FontName
Auto Trait Implementations§
impl Freeze for FontName
impl RefUnwindSafe for FontName
impl Send for FontName
impl Sync for FontName
impl Unpin for FontName
impl UnwindSafe for FontName
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