pub enum EqBand {
Bell {
frequency: Frequency,
gain: Gain,
q: Q,
},
HighShelf {
frequency: Frequency,
gain: Gain,
},
LowShelf {
frequency: Frequency,
gain: Gain,
},
HighPass {
frequency: Frequency,
slope: Slope,
},
LowPass {
frequency: Frequency,
slope: Slope,
},
}Variants§
Implementations§
Trait Implementations§
impl StructuralPartialEq for EqBand
Auto Trait Implementations§
impl Freeze for EqBand
impl RefUnwindSafe for EqBand
impl Send for EqBand
impl Sync for EqBand
impl Unpin for EqBand
impl UnwindSafe for EqBand
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