pub struct ThreeBandFilterFreqConfig {
pub low_lp_hz: f32,
pub low_hp_hz: f32,
pub high_lp_hz: f32,
pub high_hp_hz: f32,
}Fields§
§low_lp_hz: f32§low_hp_hz: f32§high_lp_hz: f32§high_hp_hz: f32Implementations§
Source§impl ThreeBandFilterFreqConfig
impl ThreeBandFilterFreqConfig
pub const MIN_FREQ_HZ: f32 = 20f32
pub const MAX_FREQ_HZ: f32 = 2.0E+4f32
pub const DEFAULT: Self
Trait Implementations§
Source§impl Clone for ThreeBandFilterFreqConfig
impl Clone for ThreeBandFilterFreqConfig
Source§fn clone(&self) -> ThreeBandFilterFreqConfig
fn clone(&self) -> ThreeBandFilterFreqConfig
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 moreSource§impl Debug for ThreeBandFilterFreqConfig
impl Debug for ThreeBandFilterFreqConfig
Source§impl Default for ThreeBandFilterFreqConfig
impl Default for ThreeBandFilterFreqConfig
impl StructuralPartialEq for ThreeBandFilterFreqConfig
Auto Trait Implementations§
impl Freeze for ThreeBandFilterFreqConfig
impl RefUnwindSafe for ThreeBandFilterFreqConfig
impl Send for ThreeBandFilterFreqConfig
impl Sync for ThreeBandFilterFreqConfig
impl Unpin for ThreeBandFilterFreqConfig
impl UnwindSafe for ThreeBandFilterFreqConfig
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