pub enum SubtableKind<'a> {
    Rearrangement(ExtendedStateTable<'a, ()>),
    Contextual(ContextualSubtable<'a>),
    Ligature(LigatureSubtable<'a>),
    NonContextual(Lookup<'a>),
    Insertion(InsertionSubtable<'a>),
}Expand description
A subtable kind.
Variants§
Rearrangement(ExtendedStateTable<'a, ()>)
Contextual(ContextualSubtable<'a>)
Ligature(LigatureSubtable<'a>)
NonContextual(Lookup<'a>)
Insertion(InsertionSubtable<'a>)
Trait Implementations§
Source§impl<'a> Clone for SubtableKind<'a>
 
impl<'a> Clone for SubtableKind<'a>
Source§fn clone(&self) -> SubtableKind<'a>
 
fn clone(&self) -> SubtableKind<'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 SubtableKind<'a>
impl<'a> RefUnwindSafe for SubtableKind<'a>
impl<'a> Send for SubtableKind<'a>
impl<'a> Sync for SubtableKind<'a>
impl<'a> Unpin for SubtableKind<'a>
impl<'a> UnwindSafe for SubtableKind<'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