pub enum Source {
Binary(Arc<dyn AsRef<[u8]> + Sync + Send>),
File(PathBuf),
SharedFile(PathBuf, Arc<dyn AsRef<[u8]> + Sync + Send>),
}
Expand description
A font source.
Either a raw binary data or a file path.
Stores the whole font and not just a single face.
Variants§
Binary(Arc<dyn AsRef<[u8]> + Sync + Send>)
A font’s raw data, typically backed by a Vec
File(PathBuf)
A font’s path.
A font’s raw data originating from a shared file mapping.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Source
impl !RefUnwindSafe for Source
impl Send for Source
impl Sync for Source
impl Unpin for Source
impl !UnwindSafe for Source
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)