pub trait ConvolutionRhs:
Add<Output = Self>
+ Clone
+ Neg<Output = Self>
+ Sub<Output = Self> { }Expand description
Bound alias for the narrow operand type (rhs only).
Requires addition, subtraction, negation, and clone.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".