pub struct IofwMonitorPairSourcePair {
pub gain_to_left: [i32; 2],
pub gain_to_right: [i32; 2],
pub mutes: [bool; 2],
pub solos: [bool; 2],
pub link: bool,
}Expand description
Parameters for pair of sources of paired mixer.
Fields§
§gain_to_left: [i32; 2]Gain from left and right channels to left channel of monitor, between 0x7fffff and 0 (-60 and 0 dB).
gain_to_right: [i32; 2]Gain from left and right channels to right channel of monitor, between 0x7fffff and 0 (-60 and 0 dB).
mutes: [bool; 2]Whether to mute left and right channels.
solos: [bool; 2]Whether to mute the other channels.
link: boolWhether to link left and right channels.
Trait Implementations§
source§impl Clone for IofwMonitorPairSourcePair
impl Clone for IofwMonitorPairSourcePair
source§fn clone(&self) -> IofwMonitorPairSourcePair
fn clone(&self) -> IofwMonitorPairSourcePair
Returns a copy 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 IofwMonitorPairSourcePair
impl Debug for IofwMonitorPairSourcePair
source§impl Default for IofwMonitorPairSourcePair
impl Default for IofwMonitorPairSourcePair
source§fn default() -> IofwMonitorPairSourcePair
fn default() -> IofwMonitorPairSourcePair
Returns the “default value” for a type. Read more
source§impl PartialEq for IofwMonitorPairSourcePair
impl PartialEq for IofwMonitorPairSourcePair
source§fn eq(&self, other: &IofwMonitorPairSourcePair) -> bool
fn eq(&self, other: &IofwMonitorPairSourcePair) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Copy for IofwMonitorPairSourcePair
impl Eq for IofwMonitorPairSourcePair
impl StructuralEq for IofwMonitorPairSourcePair
impl StructuralPartialEq for IofwMonitorPairSourcePair
Auto Trait Implementations§
impl RefUnwindSafe for IofwMonitorPairSourcePair
impl Send for IofwMonitorPairSourcePair
impl Sync for IofwMonitorPairSourcePair
impl Unpin for IofwMonitorPairSourcePair
impl UnwindSafe for IofwMonitorPairSourcePair
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