pub enum MuteChannel {
Master,
Lf,
Rf,
SpeakerOnly,
Unspecified(String),
}Variants§
Master
Lf
Rf
SpeakerOnly
Unspecified(String)
Allows passing a value that was not known at the time that this crate was generated from the available device descriptions
Trait Implementations§
Source§impl Clone for MuteChannel
impl Clone for MuteChannel
Source§fn clone(&self) -> MuteChannel
fn clone(&self) -> MuteChannel
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 MuteChannel
impl Debug for MuteChannel
Source§impl Default for MuteChannel
impl Default for MuteChannel
Source§fn default() -> MuteChannel
fn default() -> MuteChannel
Returns the “default value” for a type. Read more
Source§impl FromStr for MuteChannel
impl FromStr for MuteChannel
Source§impl<'xml> FromXml<'xml> for MuteChannel
impl<'xml> FromXml<'xml> for MuteChannel
const KIND: Kind = instant_xml::Kind::Scalar
type Accumulator = Option<MuteChannel>
fn matches(id: Id<'_>, field: Option<Id<'_>>) -> bool
fn deserialize<'cx>( into: &mut Self::Accumulator, field: &'static str, deserializer: &mut Deserializer<'cx, 'xml>, ) -> Result<(), Error>
Source§impl PartialEq for MuteChannel
impl PartialEq for MuteChannel
Source§impl ToString for MuteChannel
impl ToString for MuteChannel
Source§impl ToXml for MuteChannel
impl ToXml for MuteChannel
impl Eq for MuteChannel
impl StructuralPartialEq for MuteChannel
Auto Trait Implementations§
impl Freeze for MuteChannel
impl RefUnwindSafe for MuteChannel
impl Send for MuteChannel
impl Sync for MuteChannel
impl Unpin for MuteChannel
impl UnwindSafe for MuteChannel
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