Trait signal_processing::operations::convolution::Deconv
source · pub trait Deconv<T, Rhs>: MaybeContainer<T>where
T: Div,
Rhs: MaybeContainer<T>,{
type Q: MaybeContainer<T>;
type R: MaybeContainer<T>;
type Output: ListOrSingle<Option<(Self::Q, Self::R)>>;
// Required method
fn deconv(self, rhs: Rhs) -> Self::Output;
}
Required Associated Types§
type Q: MaybeContainer<T>
type R: MaybeContainer<T>
type Output: ListOrSingle<Option<(Self::Q, Self::R)>>
Required Methods§
Object Safety§
This trait is not object safe.