[−][src]Enum font_kit::handle::Handle
Encapsulates the information needed to locate and open a font.
This is either the path to the font or the raw in-memory font data.
To open the font referenced by a handle, use a loader.
Variants
A font on disk referenced by a path.
Fields of Path
A font in memory.
Fields of Memory
Methods
impl Handle
[src]
pub fn from_path(path: PathBuf, font_index: u32) -> Handle
[src]
Creates a new handle from a path.
font_index
specifies the index of the font to choose if the path points to a font
collection. If the path points to a single font file, pass 0.
pub fn from_memory(bytes: Arc<Vec<u8>>, font_index: u32) -> Handle
[src]
Creates a new handle from raw TTF/OTF/etc. data in memory.
font_index
specifies the index of the font to choose if the memory represents a font
collection. If the memory represents a single font file, pass 0.
pub fn load(&self) -> Result<Font, FontLoadingError>
[src]
A convenience method to load this handle with the default loader, producing a Font.
Trait Implementations
Auto Trait Implementations
impl Send for Handle
impl Sync for Handle
impl Unpin for Handle
impl UnwindSafe for Handle
impl RefUnwindSafe for Handle
Blanket Implementations
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = !
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,