pub enum Articulation {
Normal,
Staccato,
Legato,
Tenuto,
Accent,
Marcato,
}Expand description
Performance articulation applied to a note.
Variants§
Normal
Default articulation with no modification.
Staccato
Shortened, detached note.
Legato
Smoothly connected to the following note.
Tenuto
Held to its full notated length.
Accent
Emphasized with extra attack.
Marcato
Strongly accented and detached.
Trait Implementations§
Source§impl Clone for Articulation
impl Clone for Articulation
Source§fn clone(&self) -> Articulation
fn clone(&self) -> Articulation
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 Articulation
Source§impl Debug for Articulation
impl Debug for Articulation
impl Eq for Articulation
Source§impl Ord for Articulation
impl Ord for Articulation
Source§fn cmp(&self, other: &Articulation) -> Ordering
fn cmp(&self, other: &Articulation) -> 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 Articulation
impl PartialEq for Articulation
Source§impl PartialOrd for Articulation
impl PartialOrd for Articulation
impl StructuralPartialEq for Articulation
Auto Trait Implementations§
impl Freeze for Articulation
impl RefUnwindSafe for Articulation
impl Send for Articulation
impl Sync for Articulation
impl Unpin for Articulation
impl UnsafeUnpin for Articulation
impl UnwindSafe for Articulation
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