[][src]Struct moore_vhdl::lazy::LazyPhase

pub struct LazyPhase<T> {
    pub table: RefCell<T>,
}

A table of tasks needed to perform a compiler phase.

Fields

table: RefCell<T>

Implementations

impl<T: Default> LazyPhase<T> where
    T: Default
[src]

pub fn new() -> LazyPhase<T>[src]

Create a new lazy phase.

pub fn schedule<I, F>(&self, id: I, f: F) where
    T: NodeStorage<I, Node = LazyNode<F>>, 
[src]

Schedule a task to be lazily executed.

pub fn run<'lazy, 'sb, 'ast, 'ctx, I, R>(
    &self,
    id: I,
    ctx: &ScoreContext<'lazy, 'sb, 'ast, 'ctx>
) -> Result<R> where
    I: Copy + Debug,
    T: NodeStorage<I, Node = LazyNode<Box<dyn Fn(&'a ScoreContext<'b, 'sb, 'ast, 'ctx>) -> Result<R> + 'sb>>>, 
[src]

Run a task.

Auto Trait Implementations

impl<T> !RefUnwindSafe for LazyPhase<T>[src]

impl<T> Send for LazyPhase<T> where
    T: Send
[src]

impl<T> !Sync for LazyPhase<T>[src]

impl<T> Unpin for LazyPhase<T> where
    T: Unpin
[src]

impl<T> UnwindSafe for LazyPhase<T> where
    T: UnwindSafe
[src]

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> Pointable for T

type Init = T

The type for initializers.

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.