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