pub struct ContextualSubtable<'a> {
pub state_table: ExtendedStateTable<'a, ContextualEntryData>,
pub lookups: ArrayOfOffsets<'a, LookupU16<'a>, Offset32>,
}
Expand description
Contextual glyph substitution subtable.
Fields§
§state_table: ExtendedStateTable<'a, ContextualEntryData>
§lookups: ArrayOfOffsets<'a, LookupU16<'a>, Offset32>
List of lookups specifying substitutions. The index into this array is specified by the action in the state table.
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