pub struct ContextualSubtable<'a> {
    pub state: ExtendedStateTable<'a, ContextualEntryData>,
    offsets_data: &'a [u8],
    offsets: LazyArray32<'a, Offset32>,
    number_of_glyphs: NonZeroU16,
}Expand description
A contextual subtable.
Fields§
§state: ExtendedStateTable<'a, ContextualEntryData>The contextual glyph substitution state table.
offsets_data: &'a [u8]§offsets: LazyArray32<'a, Offset32>§number_of_glyphs: NonZeroU16Implementations§
Trait Implementations§
Source§impl<'a> Clone for ContextualSubtable<'a>
 
impl<'a> Clone for ContextualSubtable<'a>
Source§fn clone(&self) -> ContextualSubtable<'a>
 
fn clone(&self) -> ContextualSubtable<'a>
Returns a duplicate 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 ContextualSubtable<'a>
impl<'a> RefUnwindSafe for ContextualSubtable<'a>
impl<'a> Send for ContextualSubtable<'a>
impl<'a> Sync for ContextualSubtable<'a>
impl<'a> Unpin for ContextualSubtable<'a>
impl<'a> UnwindSafe for ContextualSubtable<'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