pub trait BinaryTransform<In1, In2, Out = In1> {
// Required method
fn apply(lhs: In1, rhs: In2) -> Out;
}Expand description
Trait for binary transforms applied lazily during iteration. Zero-sized types implementing this get monomorphized (zero runtime cost).
Required Methods§
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.