pub struct Input<'a> { /* private fields */ }
Expand description
Input channel control
Implementations§
Trait Implementations§
Source§impl Channel for Input<'_>
impl Channel for Input<'_>
Source§fn set_mute<'life0, 'async_trait>(
&'life0 self,
value: bool,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>where
Self: Sync + 'async_trait,
'life0: 'async_trait,
fn set_mute<'life0, 'async_trait>(
&'life0 self,
value: bool,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>where
Self: Sync + 'async_trait,
'life0: 'async_trait,
Sets the current mute setting
Source§fn set_gain<'life0, 'async_trait>(
&'life0 self,
value: Gain,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>where
Self: Sync + 'async_trait,
'life0: 'async_trait,
fn set_gain<'life0, 'async_trait>(
&'life0 self,
value: Gain,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>where
Self: Sync + 'async_trait,
'life0: 'async_trait,
Sets the current gain setting
Source§fn peq(&self, index: usize) -> Result<BiquadFilter<'_>>
fn peq(&self, index: usize) -> Result<BiquadFilter<'_>>
Get an object for configuring the parametric equalizer associated to this channel
fn peqs_all(&self) -> Vec<BiquadFilter<'_>>
Auto Trait Implementations§
impl<'a> Freeze for Input<'a>
impl<'a> !RefUnwindSafe for Input<'a>
impl<'a> Send for Input<'a>
impl<'a> Sync for Input<'a>
impl<'a> Unpin for Input<'a>
impl<'a> !UnwindSafe for Input<'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