pub struct ReverseChainSingleSubstitution<'a> {
    pub coverage: Coverage<'a>,
    pub backtrack_coverages: LazyOffsetArray16<'a, Coverage<'a>>,
    pub lookahead_coverages: LazyOffsetArray16<'a, Coverage<'a>>,
    pub substitutes: LazyArray16<'a, GlyphId>,
}Expand description
Fields§
§coverage: Coverage<'a>§backtrack_coverages: LazyOffsetArray16<'a, Coverage<'a>>§lookahead_coverages: LazyOffsetArray16<'a, Coverage<'a>>§substitutes: LazyArray16<'a, GlyphId>Trait Implementations§
Source§impl<'a> Clone for ReverseChainSingleSubstitution<'a>
 
impl<'a> Clone for ReverseChainSingleSubstitution<'a>
Source§fn clone(&self) -> ReverseChainSingleSubstitution<'a>
 
fn clone(&self) -> ReverseChainSingleSubstitution<'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 moreSource§impl<'a> Debug for ReverseChainSingleSubstitution<'a>
 
impl<'a> Debug for ReverseChainSingleSubstitution<'a>
impl<'a> Copy for ReverseChainSingleSubstitution<'a>
Auto Trait Implementations§
impl<'a> Freeze for ReverseChainSingleSubstitution<'a>
impl<'a> RefUnwindSafe for ReverseChainSingleSubstitution<'a>
impl<'a> Send for ReverseChainSingleSubstitution<'a>
impl<'a> Sync for ReverseChainSingleSubstitution<'a>
impl<'a> Unpin for ReverseChainSingleSubstitution<'a>
impl<'a> UnwindSafe for ReverseChainSingleSubstitution<'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