pub enum FontSource<'a> {
Data(Cow<'a, [u8]>),
Path(Cow<'a, Path>),
Bundle(Cow<'a, [u8]>),
}
Expand description
A source for a font.
Variants§
Data(Cow<'a, [u8]>)
A font loaded from data.
Path(Cow<'a, Path>)
A font loaded from a file.
Bundle(Cow<'a, [u8]>)
A zlib-compressed bundle of fonts.
Implementations§
Trait Implementations§
Source§impl<'a> Clone for FontSource<'a>
impl<'a> Clone for FontSource<'a>
Source§fn clone(&self) -> FontSource<'a>
fn clone(&self) -> FontSource<'a>
Returns a copy 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<'a> Debug for FontSource<'a>
impl<'a> Debug for FontSource<'a>
Source§impl<'a> From<&'a [u8]> for FontSource<'a>
impl<'a> From<&'a [u8]> for FontSource<'a>
Source§fn from(data: &'a [u8]) -> FontSource<'a>
fn from(data: &'a [u8]) -> FontSource<'a>
Converts to this type from the input type.
Source§impl<'a> From<&'a Path> for FontSource<'a>
impl<'a> From<&'a Path> for FontSource<'a>
Source§fn from(path: &'a Path) -> FontSource<'a>
fn from(path: &'a Path) -> FontSource<'a>
Converts to this type from the input type.
Source§impl<'a> From<&'a str> for FontSource<'a>
impl<'a> From<&'a str> for FontSource<'a>
Source§fn from(data: &'a str) -> FontSource<'a>
fn from(data: &'a str) -> FontSource<'a>
Converts to this type from the input type.
Source§impl From<PathBuf> for FontSource<'_>
impl From<PathBuf> for FontSource<'_>
Source§fn from(path: PathBuf) -> FontSource<'_>
fn from(path: PathBuf) -> FontSource<'_>
Converts to this type from the input type.
Auto Trait Implementations§
impl<'a> Freeze for FontSource<'a>
impl<'a> RefUnwindSafe for FontSource<'a>
impl<'a> Send for FontSource<'a>
impl<'a> Sync for FontSource<'a>
impl<'a> Unpin for FontSource<'a>
impl<'a> UnwindSafe for FontSource<'a>
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