#[repr(u8)]pub enum Filter {
Off = 0,
Size1 = 1,
Size3 = 2,
Size7 = 3,
Size15 = 4,
Size31 = 5,
Size63 = 6,
Size127 = 7,
}
Expand description
Possible IIR Filter settings
Variants§
Off = 0
Switch off the filter
Size1 = 1
Filter coefficient of 2
Size3 = 2
Filter coefficient of 4
Size7 = 3
Filter coefficient of 8
Size15 = 4
Filter coefficient of 16
Size31 = 5
Filter coefficient of 32
Size63 = 6
Filter coefficient of 64
Size127 = 7
Filter coefficient of 128
Auto Trait Implementations§
impl Freeze for Filter
impl RefUnwindSafe for Filter
impl Send for Filter
impl Sync for Filter
impl Unpin for Filter
impl UnwindSafe for Filter
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