pub trait EngineStream: Engine {
type View<'a>
where Self: 'a;
// Required method
fn run<F>(self, limit: F) -> Result<Self::Epoch, RadiateError>
where F: Fn(Self::View<'_>) -> bool + 'static;
}Required Associated Types§
Required Methods§
fn run<F>(self, limit: F) -> Result<Self::Epoch, RadiateError>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".
Implementors§
Source§impl<C, T> EngineStream for GeneticEngine<C, T>
Implementation of the EngineStream trait for GeneticEngine.
impl<C, T> EngineStream for GeneticEngine<C, T>
Implementation of the EngineStream trait for GeneticEngine.