pub trait Channel {
    fn set_mute<'life0, 'async_trait>(
        &'life0 self,
        value: bool
    ) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: Sync + 'async_trait
, { ... }
fn set_gain<'life0, 'async_trait>(
        &'life0 self,
        value: Gain
    ) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: Sync + 'async_trait
, { ... }
fn peq(&self, index: usize) -> Result<BiquadFilter<'_>> { ... }
fn peqs_all(&self) -> Vec<BiquadFilter<'_>> { ... } }

Provided methods

Sets the current mute setting

Sets the current gain setting

Get an object for configuring the parametric equalizer associated to this channel

Implementors