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_glyphs
is from themaxp
table.format
is from thehead
table.
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 · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more