[][src]Struct moore_vhdl::lazy::LazyPhaseTable

pub struct LazyPhaseTable<'sb, 'ast: 'sb, 'ctx: 'sb> {
    pub sb: &'sb ScoreBoard<'ast, 'ctx>,
    pub hir: LazyPhase<LazyHirTable<'sb, 'ast, 'ctx>>,
    pub typeck: RefCell<LazyTypeckTable<'sb, 'ast, 'ctx>>,
    pub typeval: RefCell<LazyTypevalTable<'sb, 'ast, 'ctx>>,
}

A table of lazy compiler phases.

Fields

sb: &'sb ScoreBoard<'ast, 'ctx>

The score board.

hir: LazyPhase<LazyHirTable<'sb, 'ast, 'ctx>>

The lazy HIR table.

typeck: RefCell<LazyTypeckTable<'sb, 'ast, 'ctx>>

The lazy typeck table.

typeval: RefCell<LazyTypevalTable<'sb, 'ast, 'ctx>>

The lazy typeval table.

Implementations

impl<'sb, 'ast, 'ctx> LazyPhaseTable<'sb, 'ast, 'ctx>[src]

pub fn new(sb: &'sb ScoreBoard<'ast, 'ctx>) -> LazyPhaseTable<'sb, 'ast, 'ctx>[src]

Create a new phase table.

Auto Trait Implementations

impl<'sb, 'ast, 'ctx> !RefUnwindSafe for LazyPhaseTable<'sb, 'ast, 'ctx>

impl<'sb, 'ast, 'ctx> !Send for LazyPhaseTable<'sb, 'ast, 'ctx>

impl<'sb, 'ast, 'ctx> !Sync for LazyPhaseTable<'sb, 'ast, 'ctx>

impl<'sb, 'ast, 'ctx> Unpin for LazyPhaseTable<'sb, 'ast, 'ctx> where
    'ast: 'sb,
    'ctx: 'sb, 

impl<'sb, 'ast, 'ctx> !UnwindSafe for LazyPhaseTable<'sb, 'ast, 'ctx>

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.