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