pub trait BinaryTransform<In1, In2, Out = In1> {
// Required method
fn apply(lhs: In1, rhs: In2) -> Out;
}Expand description
Trait for binary transforms used by vector computations. 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".