pub enum AudioOutputDeviceType {
UNKNOWN_AUDIO_OUTPUT_DEVICE_TYPE = 0,
BUILT_IN_SPEAKER = 1,
LINE_OUT = 2,
BLUETOOTH = 3,
AIRPLAY = 4,
}
Variants§
Trait Implementations§
Source§impl Clone for AudioOutputDeviceType
impl Clone for AudioOutputDeviceType
Source§fn clone(&self) -> AudioOutputDeviceType
fn clone(&self) -> AudioOutputDeviceType
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 AudioOutputDeviceType
impl Debug for AudioOutputDeviceType
Source§impl Default for AudioOutputDeviceType
impl Default for AudioOutputDeviceType
Source§impl Enum for AudioOutputDeviceType
impl Enum for AudioOutputDeviceType
Source§const NAME: &'static str = "AudioOutputDeviceType"
const NAME: &'static str = "AudioOutputDeviceType"
Enum name as specified in
.proto
file. Read moreSource§const VALUES: &'static [AudioOutputDeviceType]
const VALUES: &'static [AudioOutputDeviceType]
All enum values for enum type.
Source§impl EnumFull for AudioOutputDeviceType
impl EnumFull for AudioOutputDeviceType
Source§fn enum_descriptor() -> EnumDescriptor
fn enum_descriptor() -> EnumDescriptor
Get enum descriptor by type.
Source§fn descriptor(&self) -> EnumValueDescriptor
fn descriptor(&self) -> EnumValueDescriptor
Get enum value descriptor.
Source§impl Hash for AudioOutputDeviceType
impl Hash for AudioOutputDeviceType
Source§impl PartialEq for AudioOutputDeviceType
impl PartialEq for AudioOutputDeviceType
impl Copy for AudioOutputDeviceType
impl Eq for AudioOutputDeviceType
impl StructuralPartialEq for AudioOutputDeviceType
Auto Trait Implementations§
impl Freeze for AudioOutputDeviceType
impl RefUnwindSafe for AudioOutputDeviceType
impl Send for AudioOutputDeviceType
impl Sync for AudioOutputDeviceType
impl Unpin for AudioOutputDeviceType
impl UnwindSafe for AudioOutputDeviceType
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