Trait signal_processing::Filter
source · pub trait Filter<'a, X, XX>: Systemwhere
Self::Domain: ComplexOp<X>,
X: Into<<Self::Domain as ComplexOp<X>>::Output> + ComplexFloat<Real = <Self::Domain as ComplexFloat>::Real>,
XX: Lists<X>,{
type Output: Lists<<Self::Domain as ComplexOp<X>>::Output>;
// Required method
fn filter<W: Maybe<Vec<<Self::Domain as ComplexOp<X>>::Output>>>(
&'a self,
x: XX,
w: W
) -> Self::Output;
}
Required Associated Types§
Required Methods§
fn filter<W: Maybe<Vec<<Self::Domain as ComplexOp<X>>::Output>>>( &'a self, x: XX, w: W ) -> Self::Output
Object Safety§
This trait is not object safe.