pub struct MmseResampler<T>where
T: 'static,{ /* private fields */ }Expand description
MMSE Resampler
Implementations§
Trait Implementations§
Source§impl<T> StatefulFilter<T, T, f32> for Resampler<T>
impl<T> StatefulFilter<T, T, f32> for Resampler<T>
Source§fn filter(&mut self, i: &[T], o: &mut [T]) -> (usize, usize, ComputationStatus)
fn filter(&mut self, i: &[T], o: &mut [T]) -> (usize, usize, ComputationStatus)
Computes the kernel on the given input, outputting into the given
output. For a
UnaryKernel, kernels will not have internal memory - in
particular, this means that a single instantiated kernel does not need
to be reserved for a single stream of data. Read moreAuto Trait Implementations§
impl<T> Freeze for Resampler<T>
impl<T> RefUnwindSafe for Resampler<T>where
T: RefUnwindSafe,
impl<T> Send for Resampler<T>where
T: Send,
impl<T> Sync for Resampler<T>where
T: Sync,
impl<T> Unpin for Resampler<T>where
T: Unpin,
impl<T> UnwindSafe for Resampler<T>where
T: UnwindSafe,
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