Trait EngineExt

Source
pub trait EngineExt<E: Engine> {
    // Required method
    fn run<F>(&mut self, limit: F) -> E::Epoch
       where F: Fn(&E::Epoch) -> bool,
             Self: Sized;
}

Required Methods§

Source

fn run<F>(&mut self, limit: F) -> E::Epoch
where F: Fn(&E::Epoch) -> bool, Self: Sized,

Implementors§

Source§

impl<E> EngineExt<E> for E
where E: Engine,