#[repr(u32)]pub enum SoundDeviceFeature {
SOUNDDEVICEFEATURE_NONE = 0,
SOUNDDEVICEFEATURE_AEC = 1,
SOUNDDEVICEFEATURE_AGC = 2,
SOUNDDEVICEFEATURE_DENOISE = 4,
SOUNDDEVICEFEATURE_3DPOSITION = 8,
SOUNDDEVICEFEATURE_DUPLEXMODE = 16,
SOUNDDEVICEFEATURE_DEFAULTCOMDEVICE = 32,
}Variants§
SOUNDDEVICEFEATURE_NONE = 0
SOUNDDEVICEFEATURE_AEC = 1
SOUNDDEVICEFEATURE_AGC = 2
SOUNDDEVICEFEATURE_DENOISE = 4
SOUNDDEVICEFEATURE_3DPOSITION = 8
SOUNDDEVICEFEATURE_DUPLEXMODE = 16
SOUNDDEVICEFEATURE_DEFAULTCOMDEVICE = 32
Trait Implementations§
Source§impl Clone for SoundDeviceFeature
impl Clone for SoundDeviceFeature
Source§fn clone(&self) -> SoundDeviceFeature
fn clone(&self) -> SoundDeviceFeature
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 SoundDeviceFeature
impl Debug for SoundDeviceFeature
Source§impl Hash for SoundDeviceFeature
impl Hash for SoundDeviceFeature
Source§impl PartialEq for SoundDeviceFeature
impl PartialEq for SoundDeviceFeature
impl Copy for SoundDeviceFeature
impl Eq for SoundDeviceFeature
impl StructuralPartialEq for SoundDeviceFeature
Auto Trait Implementations§
impl Freeze for SoundDeviceFeature
impl RefUnwindSafe for SoundDeviceFeature
impl Send for SoundDeviceFeature
impl Sync for SoundDeviceFeature
impl Unpin for SoundDeviceFeature
impl UnwindSafe for SoundDeviceFeature
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