Struct voicemeeter::interface::parameters::eq::EqChannelParameter
source · pub struct EqChannelParameter<'a> { /* private fields */ }
Available on crate feature
interface
only.Expand description
Parameter for EQ on a specific channel and input/output (bus/strip)
Implementations§
source§impl<'a> EqChannelParameter<'a>
impl<'a> EqChannelParameter<'a>
sourcepub fn param(
&self,
cell: usize,
dot: impl ToString
) -> Cow<'static, ParameterNameRef>
pub fn param( &self, cell: usize, dot: impl ToString ) -> Cow<'static, ParameterNameRef>
Get the identifier for a parameter on this equalizer: Bus[i].EQ.channel[ch].cell[c].{dot}
sourcepub fn on(&self, cell: usize) -> BoolParameter<'_>
pub fn on(&self, cell: usize) -> BoolParameter<'_>
Turn EQ cell on or off
sourcepub fn type_(&self, cell: usize) -> IntParameter<'_>
pub fn type_(&self, cell: usize) -> IntParameter<'_>
Type of EQ filter.
sourcepub fn f(&self, cell: usize) -> FloatParameter<'_>
pub fn f(&self, cell: usize) -> FloatParameter<'_>
Frequency of the EQ filter.
sourcepub fn gain(&self, cell: usize) -> FloatParameter<'_>
pub fn gain(&self, cell: usize) -> FloatParameter<'_>
Gain of the EQ filter.
sourcepub fn q(&self, cell: usize) -> IntParameter<'_>
pub fn q(&self, cell: usize) -> IntParameter<'_>
Quality of the EQ filter.
Auto Trait Implementations§
impl<'a> RefUnwindSafe for EqChannelParameter<'a>
impl<'a> Send for EqChannelParameter<'a>
impl<'a> Sync for EqChannelParameter<'a>
impl<'a> Unpin for EqChannelParameter<'a>
impl<'a> UnwindSafe for EqChannelParameter<'a>
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