Trait signal_processing::operations::convolution::Conv
source · pub trait Conv<T1, T2, Rhs>: MaybeContainer<T1>where
T1: Mul<T2>,
Rhs: MaybeContainer<T2>,{
type OutputT;
type Output: MaybeContainer<Self::OutputT>;
// Required method
fn conv(self, rhs: Rhs) -> Self::Output;
}
Required Associated Types§
Required Methods§
Object Safety§
This trait is not object safe.