#[repr(C)]pub struct BiquadState {
pub x1: f32,
pub x2: f32,
pub y1: f32,
pub y2: f32,
}Expand description
Internal state for a biquad filter (two-sample history).
Fields§
§x1: f32§x2: f32§y1: f32§y2: f32Implementations§
Source§impl BiquadState
impl BiquadState
Auto Trait Implementations§
impl Freeze for BiquadState
impl RefUnwindSafe for BiquadState
impl Send for BiquadState
impl Sync for BiquadState
impl Unpin for BiquadState
impl UnsafeUnpin for BiquadState
impl UnwindSafe for BiquadState
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