Trait rtlola_hir::hir::HirStage[][src]

pub trait HirStage: Sized {
    type Error;
    type NextStage: HirMode;
    fn progress(
        self,
        handler: &Handler
    ) -> Result<RtLolaHir<Self::NextStage>, Self::Error>; }
Expand description

Defines the functionality to progress one mode to the next one

Associated Types

Defines the Error type of the progress function

Defines the next mode that is produced by the progress function

Required methods

Returns an RtLolaHir with additional functionality

Implementors