pub enum FullChannelList {
Mic,
Chat,
Music,
Game,
Console,
LineIn,
System,
Sample,
Headphones,
MicMonitor,
LineOut,
}
Expand description
There are a couple of volumes that aren’t part of the general mixer, so this needs mapping..
Variants
Mic
Chat
Music
Game
Console
LineIn
System
Sample
Headphones
MicMonitor
LineOut
Trait Implementations
sourceimpl Clone for FullChannelList
impl Clone for FullChannelList
sourcefn clone(&self) -> FullChannelList
fn clone(&self) -> FullChannelList
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for FullChannelList
impl Debug for FullChannelList
sourceimpl Enum for FullChannelList
impl Enum for FullChannelList
sourcefn from_usize(value: usize) -> Self
fn from_usize(value: usize) -> Self
Takes an usize, and returns an element matching into_usize
function.
sourcefn into_usize(self) -> usize
fn into_usize(self) -> usize
Returns an unique identifier for a value within range of 0..Array::LENGTH
.
sourceimpl<V> EnumArray<V> for FullChannelList
impl<V> EnumArray<V> for FullChannelList
sourceimpl EnumProperty for FullChannelList
impl EnumProperty for FullChannelList
sourceimpl IntoEnumIterator for FullChannelList
impl IntoEnumIterator for FullChannelList
type Iterator = FullChannelListIter
fn iter() -> FullChannelListIterⓘNotable traits for FullChannelListIterimpl Iterator for FullChannelListIter type Item = FullChannelList;
impl Copy for FullChannelList
Auto Trait Implementations
impl RefUnwindSafe for FullChannelList
impl Send for FullChannelList
impl Sync for FullChannelList
impl Unpin for FullChannelList
impl UnwindSafe for FullChannelList
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more