pub enum DeltaSetIndexMap<'a> {
Format0(DeltaSetIndexMapFormat0<'a>),
Format1(DeltaSetIndexMapFormat1<'a>),
}
Expand description
The DeltaSetIndexMap table
Variants§
Format0(DeltaSetIndexMapFormat0<'a>)
Format1(DeltaSetIndexMapFormat1<'a>)
Implementations§
Source§impl<'a> DeltaSetIndexMap<'a>
impl<'a> DeltaSetIndexMap<'a>
Sourcepub fn offset_data(&self) -> FontData<'a>
pub fn offset_data(&self) -> FontData<'a>
Return the FontData
used to resolve offsets for this table.
Sourcepub fn entry_format(&self) -> EntryFormat
pub fn entry_format(&self) -> EntryFormat
A packed field that describes the compressed representation of delta-set indices. See details below.
Source§impl<'a> DeltaSetIndexMap<'a>
impl<'a> DeltaSetIndexMap<'a>
Trait Implementations§
Source§impl<'a> Clone for DeltaSetIndexMap<'a>
impl<'a> Clone for DeltaSetIndexMap<'a>
Source§fn clone(&self) -> DeltaSetIndexMap<'a>
fn clone(&self) -> DeltaSetIndexMap<'a>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl<'a> Freeze for DeltaSetIndexMap<'a>
impl<'a> RefUnwindSafe for DeltaSetIndexMap<'a>
impl<'a> Send for DeltaSetIndexMap<'a>
impl<'a> Sync for DeltaSetIndexMap<'a>
impl<'a> Unpin for DeltaSetIndexMap<'a>
impl<'a> UnwindSafe for DeltaSetIndexMap<'a>
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