pub struct MonitorSrcPair {
pub mode: MonitorSrcPairMode,
pub stereo_link: bool,
pub params: [MonitorSrcParam; 2],
}Expand description
Source of monitor.
Fields§
§mode: MonitorSrcPairModeMode of source pair of monitor.
stereo_link: boolStereo channel link for the pair.
params: [MonitorSrcParam; 2]Parameters of monitor source for left and right channels in its order.
Trait Implementations§
source§impl Clone for MonitorSrcPair
impl Clone for MonitorSrcPair
source§fn clone(&self) -> MonitorSrcPair
fn clone(&self) -> MonitorSrcPair
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 MonitorSrcPair
impl Debug for MonitorSrcPair
source§impl Default for MonitorSrcPair
impl Default for MonitorSrcPair
source§fn default() -> MonitorSrcPair
fn default() -> MonitorSrcPair
Returns the “default value” for a type. Read more
source§impl PartialEq for MonitorSrcPair
impl PartialEq for MonitorSrcPair
source§fn eq(&self, other: &MonitorSrcPair) -> bool
fn eq(&self, other: &MonitorSrcPair) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Copy for MonitorSrcPair
impl Eq for MonitorSrcPair
impl StructuralEq for MonitorSrcPair
impl StructuralPartialEq for MonitorSrcPair
Auto Trait Implementations§
impl RefUnwindSafe for MonitorSrcPair
impl Send for MonitorSrcPair
impl Sync for MonitorSrcPair
impl Unpin for MonitorSrcPair
impl UnwindSafe for MonitorSrcPair
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