pub enum FontId {
Ui,
Serif,
Monospace,
Family(String),
}Expand description
Stable, portable font identifier used by the UI/runtime.
This is intentionally a semantic identifier (not a font database index) so that it remains stable across runs and portable to wasm/sandboxed environments.
Variants§
Ui
Built-in “system UI” font alias (implementation-defined).
Serif
Built-in serif font alias (implementation-defined).
Monospace
Built-in monospace font alias (implementation-defined).
Family(String)
A named font family resolved by the backend (best-effort).
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for FontId
impl<'de> Deserialize<'de> for FontId
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for FontId
impl StructuralPartialEq for FontId
Auto Trait Implementations§
impl Freeze for FontId
impl RefUnwindSafe for FontId
impl Send for FontId
impl Sync for FontId
impl Unpin for FontId
impl UnsafeUnpin for FontId
impl UnwindSafe for FontId
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