pub struct FirFilter<T: Sample> { /* private fields */ }Expand description
Finite impulse response filter block.
Implementations§
Source§impl<T> FirFilter<T>
impl<T> FirFilter<T>
Sourcepub fn builder(taps: &[T]) -> FirFilterBuilder<T>
pub fn builder(taps: &[T]) -> FirFilterBuilder<T>
Create new FirFilterBuilder, with the supplied taps.
Sourcepub fn new(src: ReadStream<T>, taps: &[T]) -> (Self, ReadStream<T>)
pub fn new(src: ReadStream<T>, taps: &[T]) -> (Self, ReadStream<T>)
Create Fir block given taps.
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for FirFilter<T>
impl<T> RefUnwindSafe for FirFilter<T>where
T: RefUnwindSafe,
impl<T> Send for FirFilter<T>
impl<T> Sync for FirFilter<T>
impl<T> Unpin for FirFilter<T>where
T: Unpin,
impl<T> UnsafeUnpin for FirFilter<T>
impl<T> UnwindSafe for FirFilter<T>where
T: UnwindSafe + RefUnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more