pub struct ShellMonitorSrcMute {
pub stream: bool,
pub analog: Vec<bool>,
pub digital: Vec<bool>,
}
Expand description
Mute state for monitor sources.
Fields§
§stream: bool
For stream inputs.
analog: Vec<bool>
For analog inputs.
digital: Vec<bool>
For digital inputs.
Trait Implementations§
Source§impl Clone for ShellMonitorSrcMute
impl Clone for ShellMonitorSrcMute
Source§fn clone(&self) -> ShellMonitorSrcMute
fn clone(&self) -> ShellMonitorSrcMute
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 ShellMonitorSrcMute
impl Debug for ShellMonitorSrcMute
Source§impl PartialEq for ShellMonitorSrcMute
impl PartialEq for ShellMonitorSrcMute
impl Eq for ShellMonitorSrcMute
impl StructuralPartialEq for ShellMonitorSrcMute
Auto Trait Implementations§
impl Freeze for ShellMonitorSrcMute
impl RefUnwindSafe for ShellMonitorSrcMute
impl Send for ShellMonitorSrcMute
impl Sync for ShellMonitorSrcMute
impl Unpin for ShellMonitorSrcMute
impl UnwindSafe for ShellMonitorSrcMute
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