#[repr(u32)]pub enum StereoModeType {
Distributed = 0,
Discrete = 1,
}Variants§
Trait Implementations§
Source§impl Clone for StereoModeType
impl Clone for StereoModeType
Source§fn clone(&self) -> StereoModeType
fn clone(&self) -> StereoModeType
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 StereoModeType
impl Debug for StereoModeType
Source§impl From<StereoModeType> for u32
impl From<StereoModeType> for u32
Source§fn from(enum_value: StereoModeType) -> Self
fn from(enum_value: StereoModeType) -> Self
Converts to this type from the input type.
Source§impl PartialEq for StereoModeType
impl PartialEq for StereoModeType
Source§impl ReadableParameter for StereoModeType
impl ReadableParameter for StereoModeType
Source§fn get_parameter_string(dsp: Dsp, index: c_int) -> Result<Utf8CString>
fn get_parameter_string(dsp: Dsp, index: c_int) -> Result<Utf8CString>
Get the parameter string at
index.Source§impl TryFrom<u32> for StereoModeType
impl TryFrom<u32> for StereoModeType
Source§type Error = TryFromPrimitiveError<StereoModeType>
type Error = TryFromPrimitiveError<StereoModeType>
The type returned in the event of a conversion error.
Source§impl TryFromPrimitive for StereoModeType
impl TryFromPrimitive for StereoModeType
const NAME: &'static str = "StereoModeType"
type Primitive = u32
type Error = TryFromPrimitiveError<StereoModeType>
fn try_from_primitive( number: Self::Primitive, ) -> Result<Self, TryFromPrimitiveError<Self>>
Source§impl WritableParameter for StereoModeType
impl WritableParameter for StereoModeType
impl Copy for StereoModeType
impl Eq for StereoModeType
impl StructuralPartialEq for StereoModeType
Auto Trait Implementations§
impl Freeze for StereoModeType
impl RefUnwindSafe for StereoModeType
impl Send for StereoModeType
impl Sync for StereoModeType
impl Unpin for StereoModeType
impl UnwindSafe for StereoModeType
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