#[repr(C)]pub struct OnePoleState {
pub y1: f32,
}Expand description
Internal state for a one-pole filter (single-sample history).
Fields§
§y1: f32Implementations§
Source§impl OnePoleState
impl OnePoleState
Trait Implementations§
Source§impl Clone for OnePoleState
impl Clone for OnePoleState
Source§fn clone(&self) -> OnePoleState
fn clone(&self) -> OnePoleState
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for OnePoleState
Auto Trait Implementations§
impl Freeze for OnePoleState
impl RefUnwindSafe for OnePoleState
impl Send for OnePoleState
impl Sync for OnePoleState
impl Unpin for OnePoleState
impl UnsafeUnpin for OnePoleState
impl UnwindSafe for OnePoleState
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