pub enum CurveShape {
Accelerando,
Ritardando,
Rubato,
Flat,
}Expand description
Shape of a tempo change over time.
Variants§
Accelerando
Gradually speeding up.
Ritardando
Gradually slowing down.
Rubato
Free rubato (expressive fluctuation).
Flat
Constant tempo (no change).
Trait Implementations§
Source§impl Clone for CurveShape
impl Clone for CurveShape
Source§fn clone(&self) -> CurveShape
fn clone(&self) -> CurveShape
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 CurveShape
Source§impl Debug for CurveShape
impl Debug for CurveShape
Source§impl PartialEq for CurveShape
impl PartialEq for CurveShape
Source§fn eq(&self, other: &CurveShape) -> bool
fn eq(&self, other: &CurveShape) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CurveShape
Auto Trait Implementations§
impl Freeze for CurveShape
impl RefUnwindSafe for CurveShape
impl Send for CurveShape
impl Sync for CurveShape
impl Unpin for CurveShape
impl UnsafeUnpin for CurveShape
impl UnwindSafe for CurveShape
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