pub enum MediaPathId {
None,
Headset,
Handset,
Speaker,
Unknown(u32),
}Expand description
Station audio-path component named by a media-path event.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for MediaPathId
impl Clone for MediaPathId
Source§fn clone(&self) -> MediaPathId
fn clone(&self) -> MediaPathId
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for MediaPathId
Source§impl Debug for MediaPathId
impl Debug for MediaPathId
impl Eq for MediaPathId
Source§impl From<MediaPathId> for u32
impl From<MediaPathId> for u32
Source§fn from(value: MediaPathId) -> Self
fn from(value: MediaPathId) -> Self
Converts to this type from the input type.
Source§impl From<u32> for MediaPathId
impl From<u32> for MediaPathId
Source§impl Hash for MediaPathId
impl Hash for MediaPathId
Source§impl PartialEq for MediaPathId
impl PartialEq for MediaPathId
impl StructuralPartialEq for MediaPathId
Auto Trait Implementations§
impl Freeze for MediaPathId
impl RefUnwindSafe for MediaPathId
impl Send for MediaPathId
impl Sync for MediaPathId
impl Unpin for MediaPathId
impl UnsafeUnpin for MediaPathId
impl UnwindSafe for MediaPathId
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