pub struct InsertionSubtable<'a> {
pub state_table: ExtendedStateTable<'a, InsertionEntryData>,
pub glyphs: &'a [BigEndian<GlyphId16>],
}
Expand description
Insertion glyph substitution subtable.
Fields§
§state_table: ExtendedStateTable<'a, InsertionEntryData>
§glyphs: &'a [BigEndian<GlyphId16>]
Insertion glyph table. The index and count of glyphs to insert is determined by the state machine.
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