pub struct LigatureSubtable<'a> {
    pub state: ExtendedStateTable<'a, u16>,
    pub ligature_actions: LazyArray32<'a, u32>,
    pub components: LazyArray32<'a, u16>,
    pub ligatures: LazyArray32<'a, GlyphId>,
}Expand description
A ligature subtable.
Fields§
§state: ExtendedStateTable<'a, u16>A state table.
ligature_actions: LazyArray32<'a, u32>Ligature actions.
components: LazyArray32<'a, u16>Ligature components.
ligatures: LazyArray32<'a, GlyphId>Ligatures.
Trait Implementations§
Source§impl<'a> Clone for LigatureSubtable<'a>
 
impl<'a> Clone for LigatureSubtable<'a>
Source§fn clone(&self) -> LigatureSubtable<'a>
 
fn clone(&self) -> LigatureSubtable<'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 LigatureSubtable<'a>
impl<'a> RefUnwindSafe for LigatureSubtable<'a>
impl<'a> Send for LigatureSubtable<'a>
impl<'a> Sync for LigatureSubtable<'a>
impl<'a> Unpin for LigatureSubtable<'a>
impl<'a> UnwindSafe for LigatureSubtable<'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