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