pub struct FirInstanceQ15<'a> {
pub num_taps: u16,
pub coeffs: &'a [q15],
pub state: &'a mut [q15],
}Expand description
Instance structure for the Q15 FIR filter.
Fields§
§num_taps: u16§coeffs: &'a [q15]§state: &'a mut [q15]Implementations§
Auto Trait Implementations§
impl<'a> !UnwindSafe for FirInstanceQ15<'a>
impl<'a> Freeze for FirInstanceQ15<'a>
impl<'a> RefUnwindSafe for FirInstanceQ15<'a>
impl<'a> Send for FirInstanceQ15<'a>
impl<'a> Sync for FirInstanceQ15<'a>
impl<'a> Unpin for FirInstanceQ15<'a>
impl<'a> UnsafeUnpin for FirInstanceQ15<'a>
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