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;
}

Required Methods§

Source

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

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

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