Skip to main content

ConvolutionRhs

Trait ConvolutionRhs 

Source
pub trait ConvolutionRhs:
    Add<Output = Self>
    + Copy
    + Neg<Output = Self>
    + Sub<Output = Self> { }
Expand description

Bound alias for the narrow operand type (rhs only).

Requires addition, subtraction, negation, and copy.

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.

Implementors§

Source§

impl<T> ConvolutionRhs for T
where T: Add<Output = T> + Copy + Neg<Output = T> + Sub<Output = T>,