Struct rustpotter::BandPassConfig
source · pub struct BandPassConfig {
pub enabled: bool,
pub low_cutoff: f32,
pub high_cutoff: f32,
}Expand description
Configures the band-pass audio filter used.
Fields§
§enabled: boolEnables the filter.
low_cutoff: f32Low cutoff for the band-pass filter.
high_cutoff: f32High cutoff for the band-pass filter.
Trait Implementations§
source§impl Debug for BandPassConfig
impl Debug for BandPassConfig
source§impl Default for BandPassConfig
impl Default for BandPassConfig
source§fn default() -> BandPassConfig
fn default() -> BandPassConfig
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for BandPassConfig
impl Send for BandPassConfig
impl Sync for BandPassConfig
impl Unpin for BandPassConfig
impl UnwindSafe for BandPassConfig
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