Enum ttf_parser::loca::Table
source · [−]pub enum Table<'a> {
Short(LazyArray16<'a, u16>),
Long(LazyArray16<'a, u32>),
}Expand description
Variants
Short(LazyArray16<'a, u16>)
Short offsets.
Long(LazyArray16<'a, u32>)
Long offsets.
Implementations
sourceimpl<'a> Table<'a>
impl<'a> Table<'a>
sourcepub fn parse(
number_of_glyphs: NonZeroU16,
format: IndexToLocationFormat,
data: &'a [u8]
) -> Option<Self>
pub fn parse(
number_of_glyphs: NonZeroU16,
format: IndexToLocationFormat,
data: &'a [u8]
) -> Option<Self>
Parses a table from raw data.
number_of_glyphsis from themaxptable.formatis from theheadtable.
Trait Implementations
impl<'a> Copy for Table<'a>
Auto Trait Implementations
impl<'a> RefUnwindSafe for Table<'a>
impl<'a> Send for Table<'a>
impl<'a> Sync for Table<'a>
impl<'a> Unpin for Table<'a>
impl<'a> UnwindSafe for Table<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more