Enum ttf_parser::opentype_layout::ContextLookup [−][src]
pub enum ContextLookup<'a> {
Format1 {
coverage: Coverage<'a>,
sets: SequenceRuleSets<'a>,
},
Format2 {
coverage: Coverage<'a>,
classes: ClassDefinition<'a>,
sets: SequenceRuleSets<'a>,
},
Format3 {
coverage: Coverage<'a>,
coverages: LazyOffsetArray16<'a, Coverage<'a>>,
lookups: LazyArray16<'a, SequenceLookupRecord>,
},
}Expand description
Variants
Simple glyph contexts.
Fields of Format1
coverage: Coverage<'a>sets: SequenceRuleSets<'a>Class-based glyph contexts.
Fields of Format2
Coverage-based glyph contexts.
Fields of Format3
coverage: Coverage<'a>coverages: LazyOffsetArray16<'a, Coverage<'a>>lookups: LazyArray16<'a, SequenceLookupRecord>Implementations
Trait Implementations
Auto Trait Implementations
impl<'a> RefUnwindSafe for ContextLookup<'a>
impl<'a> Send for ContextLookup<'a>
impl<'a> Sync for ContextLookup<'a>
impl<'a> Unpin for ContextLookup<'a>
impl<'a> UnwindSafe for ContextLookup<'a>
Blanket Implementations
Mutably borrows from an owned value. Read more