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: bool
Whether 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 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 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
impl Copy for IofwMonitorPairSourcePair
impl Eq for IofwMonitorPairSourcePair
impl StructuralPartialEq for IofwMonitorPairSourcePair
Auto Trait Implementations§
impl Freeze for IofwMonitorPairSourcePair
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