Skip to main content

RuntimeInterface

Trait RuntimeInterface 

Source
pub trait RuntimeInterface {
    type Runnable: RunnableInterface;
    type Model: ModelInterface;

    // Required method
    fn prepare(&self, model: Self::Model) -> Result<Self::Runnable>;
}

Required Associated Types§

Required Methods§

Source

fn prepare(&self, model: Self::Model) -> Result<Self::Runnable>

Implementors§