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
Format1
Simple glyph contexts.
Format2
Class-based glyph contexts.
Format3
Fields
coverage: Coverage<'a>
coverages: LazyOffsetArray16<'a, Coverage<'a>>
lookups: LazyArray16<'a, SequenceLookupRecord>
Coverage-based glyph contexts.
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