pub trait OperatorExt<I, T, U>{
// Required method
fn with_operator<O>(&self, operator: O) -> Stream<I, U>
where O: Operator<I, T> + 'static,
U: Value;
}Expand description
Operator extension trait.
Required Methods§
Sourcefn with_operator<O>(&self, operator: O) -> Stream<I, U>
fn with_operator<O>(&self, operator: O) -> Stream<I, U>
Applies the given operator and returns a stream.
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.