pub enum AnalogInputSettings {
Stereo(InputMixerSettings),
DualMono((InputMixerSettings, InputMixerSettings)),
}Variants§
Stereo(InputMixerSettings)
DualMono((InputMixerSettings, InputMixerSettings))
Trait Implementations§
Source§impl Clone for AnalogInputSettings
impl Clone for AnalogInputSettings
Source§fn clone(&self) -> AnalogInputSettings
fn clone(&self) -> AnalogInputSettings
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AnalogInputSettings
impl Debug for AnalogInputSettings
Source§impl PartialEq for AnalogInputSettings
impl PartialEq for AnalogInputSettings
impl StructuralPartialEq for AnalogInputSettings
Auto Trait Implementations§
impl Freeze for AnalogInputSettings
impl RefUnwindSafe for AnalogInputSettings
impl Send for AnalogInputSettings
impl Sync for AnalogInputSettings
impl Unpin for AnalogInputSettings
impl UnwindSafe for AnalogInputSettings
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