Enum voicemeeter::interface::device::DeviceType
source · #[repr(i32)]pub enum DeviceType {
Mme = 1,
Wdm = 3,
Ks = 4,
Asio = 5,
Other(VBVMR_DEVTYPE),
}
Available on crate feature
interface
only.Expand description
Represents the type of an audio device.
Variants§
Mme = 1
MME (Multimedia Extension) audio driver.
Wdm = 3
WDM (Windows Driver Model) audio driver.
Ks = 4
KS (Kernel Streaming) audio driver.
Asio = 5
ASIO (Audio Stream Input/Output) audio driver.
Other(VBVMR_DEVTYPE)
Other audio device types not explicitly defined.
Trait Implementations§
source§impl Debug for DeviceType
impl Debug for DeviceType
Auto Trait Implementations§
impl RefUnwindSafe for DeviceType
impl Send for DeviceType
impl Sync for DeviceType
impl Unpin for DeviceType
impl UnwindSafe for DeviceType
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