pub trait Executor {
    // Required methods
    async fn prepare(&mut self) -> Result<()>;
    async fn run(&mut self) -> Result<()>;
}

Required Methods§

source

async fn prepare(&mut self) -> Result<()>

source

async fn run(&mut self) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§