pub enum GetParameterStepSizesResult {
Normal {
normal_step: f64,
small_step: Option<f64>,
large_step: Option<f64>,
},
Toggle,
}Variants§
Normal
Normal (non-toggleable) parameter.
Each of the decimal numbers are > 0.
Toggle
Toggleable parameter.
Trait Implementations§
Source§impl Clone for GetParameterStepSizesResult
impl Clone for GetParameterStepSizesResult
Source§fn clone(&self) -> GetParameterStepSizesResult
fn clone(&self) -> GetParameterStepSizesResult
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 GetParameterStepSizesResult
impl Debug for GetParameterStepSizesResult
impl Copy for GetParameterStepSizesResult
impl StructuralPartialEq for GetParameterStepSizesResult
Auto Trait Implementations§
impl Freeze for GetParameterStepSizesResult
impl RefUnwindSafe for GetParameterStepSizesResult
impl Send for GetParameterStepSizesResult
impl Sync for GetParameterStepSizesResult
impl Unpin for GetParameterStepSizesResult
impl UnwindSafe for GetParameterStepSizesResult
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