pub enum ChainedContextLookup<'a> {
Format1 {
coverage: Coverage<'a>,
sets: LazyOffsetArray16<'a, LazyOffsetArray16<'a, ChainedSequenceRule<'a>>>,
},
Format2 {
coverage: Coverage<'a>,
backtrack_classes: ClassDefinition<'a>,
input_classes: ClassDefinition<'a>,
lookahead_classes: ClassDefinition<'a>,
sets: LazyOffsetArray16<'a, LazyOffsetArray16<'a, ChainedSequenceRule<'a>>>,
},
Format3 {
coverage: Coverage<'a>,
backtrack_coverages: LazyOffsetArray16<'a, Coverage<'a>>,
input_coverages: LazyOffsetArray16<'a, Coverage<'a>>,
lookahead_coverages: LazyOffsetArray16<'a, Coverage<'a>>,
lookups: LazyArray16<'a, SequenceLookupRecord>,
},
}
Expand description
Variants§
Format1
Simple glyph contexts.
Fields
§
sets: LazyOffsetArray16<'a, LazyOffsetArray16<'a, ChainedSequenceRule<'a>>>
Format2
Class-based glyph contexts.
Fields
§
backtrack_classes: ClassDefinition<'a>
§
input_classes: ClassDefinition<'a>
§
lookahead_classes: ClassDefinition<'a>
§
sets: LazyOffsetArray16<'a, LazyOffsetArray16<'a, ChainedSequenceRule<'a>>>
Format3
Coverage-based glyph contexts.
Fields
§
backtrack_coverages: LazyOffsetArray16<'a, Coverage<'a>>
§
input_coverages: LazyOffsetArray16<'a, Coverage<'a>>
§
lookahead_coverages: LazyOffsetArray16<'a, Coverage<'a>>
§
lookups: LazyArray16<'a, SequenceLookupRecord>
Implementations§
Trait Implementations§
source§impl<'a> Clone for ChainedContextLookup<'a>
impl<'a> Clone for ChainedContextLookup<'a>
source§fn clone(&self) -> ChainedContextLookup<'a>
fn clone(&self) -> ChainedContextLookup<'a>
Returns a copy 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 ChainedContextLookup<'a>
impl<'a> Debug for ChainedContextLookup<'a>
impl<'a> Copy for ChainedContextLookup<'a>
Auto Trait Implementations§
impl<'a> Freeze for ChainedContextLookup<'a>
impl<'a> RefUnwindSafe for ChainedContextLookup<'a>
impl<'a> Send for ChainedContextLookup<'a>
impl<'a> Sync for ChainedContextLookup<'a>
impl<'a> Unpin for ChainedContextLookup<'a>
impl<'a> UnwindSafe for ChainedContextLookup<'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