pub struct NamedFont {
pub name: String,
pub bytes: Vec<u8>,
}Expand description
A named font to be added to the font cache from memory. This is the primary way to supply custom fonts to the application.
Fields§
§name: StringHuman-readable name for this font (e.g., “My Custom Font”)
bytes: Vec<u8>The raw font file bytes (TTF, OTF, WOFF, WOFF2, TTC)
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for NamedFont
impl RefUnwindSafe for NamedFont
impl Send for NamedFont
impl Sync for NamedFont
impl Unpin for NamedFont
impl UnsafeUnpin for NamedFont
impl UnwindSafe for NamedFont
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