pub struct InsertionSubtable<'a> {
    pub state: ExtendedStateTable<'a, InsertionEntryData>,
    pub glyphs: LazyArray32<'a, GlyphId>,
}Expand description
An insertion subtable.
Fields§
§state: ExtendedStateTable<'a, InsertionEntryData>A state table.
glyphs: LazyArray32<'a, GlyphId>Insertion glyphs.
Trait Implementations§
Source§impl<'a> Clone for InsertionSubtable<'a>
 
impl<'a> Clone for InsertionSubtable<'a>
Source§fn clone(&self) -> InsertionSubtable<'a>
 
fn clone(&self) -> InsertionSubtable<'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 InsertionSubtable<'a>
impl<'a> RefUnwindSafe for InsertionSubtable<'a>
impl<'a> Send for InsertionSubtable<'a>
impl<'a> Sync for InsertionSubtable<'a>
impl<'a> Unpin for InsertionSubtable<'a>
impl<'a> UnwindSafe for InsertionSubtable<'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