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 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more