pub struct EqBand {
pub mode: EqModeType,
pub freq_fin: u8,
pub freq: u8,
pub level_fin: u8,
pub level: u8,
pub q: u8,
}
Fields§
§mode: EqModeType
§freq_fin: u8
§freq: u8
§level_fin: u8
§level: u8
§q: u8
Implementations§
Source§impl EqBand
impl EqBand
pub fn default_low() -> EqBand
pub fn default_mid() -> EqBand
pub fn default_high() -> EqBand
pub fn is_empty(&self) -> bool
pub fn gain(&self) -> f64
pub fn frequency(&self) -> usize
pub fn write(&self, w: &mut Writer)
pub fn from_reader(reader: &mut Reader) -> EqBand
Trait Implementations§
Source§impl Describable for EqBand
impl Describable for EqBand
Source§fn describe<PG: ParameterGatherer>(&self, pg: PG, _ver: Version) -> PG
fn describe<PG: ParameterGatherer>(&self, pg: PG, _ver: Version) -> PG
Method called to describte the content of the structure in any gatherer.
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