Enum allsorts_no_std::layout::ChainContextLookup[][src]

pub enum ChainContextLookup<T: LayoutTableType> {
    Format1 {
        coverage: Rc<Coverage>,
        chainsubrulesets: Vec<Option<ChainSubRuleSet>>,
        phantom: PhantomData<T>,
    },
    Format2 {
        coverage: Rc<Coverage>,
        backtrack_classdef: Rc<ClassDef>,
        input_classdef: Rc<ClassDef>,
        lookahead_classdef: Rc<ClassDef>,
        chainsubclasssets: Vec<Option<ChainSubClassSet>>,
        phantom: PhantomData<T>,
    },
    Format3 {
        backtrack_coverages: Vec<Rc<Coverage>>,
        input_coverages: Vec<Rc<Coverage>>,
        lookahead_coverages: Vec<Rc<Coverage>>,
        lookup_records: Vec<(u16, u16)>,
        phantom: PhantomData<T>,
    },
}

Variants

Format1

Fields of Format1

coverage: Rc<Coverage>chainsubrulesets: Vec<Option<ChainSubRuleSet>>phantom: PhantomData<T>
Format2

Fields of Format2

coverage: Rc<Coverage>backtrack_classdef: Rc<ClassDef>input_classdef: Rc<ClassDef>lookahead_classdef: Rc<ClassDef>chainsubclasssets: Vec<Option<ChainSubClassSet>>phantom: PhantomData<T>
Format3

Fields of Format3

backtrack_coverages: Vec<Rc<Coverage>>input_coverages: Vec<Rc<Coverage>>lookahead_coverages: Vec<Rc<Coverage>>lookup_records: Vec<(u16, u16)>phantom: PhantomData<T>

Trait Implementations

impl<'a, T: LayoutTableType> ReadBinaryDep<'a> for ChainContextLookup<T>[src]

type HostType = Self

type Args = LayoutCache<T>

Auto Trait Implementations

impl<T> !RefUnwindSafe for ChainContextLookup<T>

impl<T> !Send for ChainContextLookup<T>

impl<T> !Sync for ChainContextLookup<T>

impl<T> Unpin for ChainContextLookup<T> where
    T: Unpin

impl<T> UnwindSafe for ChainContextLookup<T> where
    T: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.