pub enum PerformanceTechnique {
Pizzicato,
Arco,
Tremolo,
Glissando,
Harmonic,
PalmMute,
Bend,
Vibrato,
Custom,
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for PerformanceTechnique
impl Clone for PerformanceTechnique
Source§fn clone(&self) -> PerformanceTechnique
fn clone(&self) -> PerformanceTechnique
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 PerformanceTechnique
impl Debug for PerformanceTechnique
Source§impl Display for PerformanceTechnique
impl Display for PerformanceTechnique
Source§impl FromStr for PerformanceTechnique
impl FromStr for PerformanceTechnique
Source§type Err = ArticulationError
type Err = ArticulationError
The associated error which can be returned from parsing.
Source§fn from_str(
value: &str,
) -> Result<PerformanceTechnique, <PerformanceTechnique as FromStr>::Err>
fn from_str( value: &str, ) -> Result<PerformanceTechnique, <PerformanceTechnique as FromStr>::Err>
Parses a string
s to return a value of this type. Read moreSource§impl Hash for PerformanceTechnique
impl Hash for PerformanceTechnique
Source§impl Ord for PerformanceTechnique
impl Ord for PerformanceTechnique
Source§fn cmp(&self, other: &PerformanceTechnique) -> Ordering
fn cmp(&self, other: &PerformanceTechnique) -> 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 PerformanceTechnique
impl PartialEq for PerformanceTechnique
Source§fn eq(&self, other: &PerformanceTechnique) -> bool
fn eq(&self, other: &PerformanceTechnique) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for PerformanceTechnique
impl PartialOrd for PerformanceTechnique
impl Copy for PerformanceTechnique
impl Eq for PerformanceTechnique
impl StructuralPartialEq for PerformanceTechnique
Auto Trait Implementations§
impl Freeze for PerformanceTechnique
impl RefUnwindSafe for PerformanceTechnique
impl Send for PerformanceTechnique
impl Sync for PerformanceTechnique
impl Unpin for PerformanceTechnique
impl UnsafeUnpin for PerformanceTechnique
impl UnwindSafe for PerformanceTechnique
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