pub enum DynamicChangeKind {
Crescendo,
Decrescendo,
Diminuendo,
Subito,
Gradual,
Unknown,
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for DynamicChangeKind
impl Clone for DynamicChangeKind
Source§fn clone(&self) -> DynamicChangeKind
fn clone(&self) -> DynamicChangeKind
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 moreSource§impl Debug for DynamicChangeKind
impl Debug for DynamicChangeKind
Source§impl Display for DynamicChangeKind
impl Display for DynamicChangeKind
Source§impl FromStr for DynamicChangeKind
impl FromStr for DynamicChangeKind
Source§type Err = DynamicsError
type Err = DynamicsError
The associated error which can be returned from parsing.
Source§fn from_str(
value: &str,
) -> Result<DynamicChangeKind, <DynamicChangeKind as FromStr>::Err>
fn from_str( value: &str, ) -> Result<DynamicChangeKind, <DynamicChangeKind as FromStr>::Err>
Parses a string
s to return a value of this type. Read moreSource§impl Hash for DynamicChangeKind
impl Hash for DynamicChangeKind
Source§impl Ord for DynamicChangeKind
impl Ord for DynamicChangeKind
Source§fn cmp(&self, other: &DynamicChangeKind) -> Ordering
fn cmp(&self, other: &DynamicChangeKind) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for DynamicChangeKind
impl PartialEq for DynamicChangeKind
Source§fn eq(&self, other: &DynamicChangeKind) -> bool
fn eq(&self, other: &DynamicChangeKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for DynamicChangeKind
impl PartialOrd for DynamicChangeKind
impl Copy for DynamicChangeKind
impl Eq for DynamicChangeKind
impl StructuralPartialEq for DynamicChangeKind
Auto Trait Implementations§
impl Freeze for DynamicChangeKind
impl RefUnwindSafe for DynamicChangeKind
impl Send for DynamicChangeKind
impl Sync for DynamicChangeKind
impl Unpin for DynamicChangeKind
impl UnsafeUnpin for DynamicChangeKind
impl UnwindSafe for DynamicChangeKind
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