pub enum AutomationCurve {
Linear,
Exponential,
Logarithmic,
Step,
}Expand description
Parameter automation curve types
Variants§
Linear
Linear interpolation
Exponential
Exponential curve
Logarithmic
Logarithmic curve
Step
Step (no interpolation)
Trait Implementations§
Source§impl Clone for AutomationCurve
impl Clone for AutomationCurve
Source§fn clone(&self) -> AutomationCurve
fn clone(&self) -> AutomationCurve
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for AutomationCurve
Source§impl Debug for AutomationCurve
impl Debug for AutomationCurve
Source§impl PartialEq for AutomationCurve
impl PartialEq for AutomationCurve
impl StructuralPartialEq for AutomationCurve
Auto Trait Implementations§
impl Freeze for AutomationCurve
impl RefUnwindSafe for AutomationCurve
impl Send for AutomationCurve
impl Sync for AutomationCurve
impl Unpin for AutomationCurve
impl UnsafeUnpin for AutomationCurve
impl UnwindSafe for AutomationCurve
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