Enum ttf_parser::loca::Table [−][src]
pub enum Table<'a> {
Short(LazyArray16<'a, u16>),
Long(LazyArray16<'a, u32>),
}
Expand description
Variants
Short(LazyArray16<'a, u16>)
Tuple Fields
0: LazyArray16<'a, u16>
Short offsets.
Long(LazyArray16<'a, u32>)
Tuple Fields
0: LazyArray16<'a, u32>
Long offsets.
Implementations
pub 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
Auto Trait Implementations
impl<'a> RefUnwindSafe for Table<'a>
impl<'a> UnwindSafe for Table<'a>
Blanket Implementations
Mutably borrows from an owned value. Read more