pub enum ChordExpression {
Chord(Chord),
UnIdentified,
NoChord,
Same,
}Variants§
Trait Implementations§
Source§impl Clone for ChordExpression
impl Clone for ChordExpression
Source§fn clone(&self) -> ChordExpression
fn clone(&self) -> ChordExpression
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 ChordExpression
impl Debug for ChordExpression
Source§impl<'de> Deserialize<'de> for ChordExpression
impl<'de> Deserialize<'de> for ChordExpression
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ChordExpression
impl PartialEq for ChordExpression
Source§impl Serialize for ChordExpression
impl Serialize for ChordExpression
impl StructuralPartialEq for ChordExpression
Auto Trait Implementations§
impl Freeze for ChordExpression
impl RefUnwindSafe for ChordExpression
impl Send for ChordExpression
impl Sync for ChordExpression
impl Unpin for ChordExpression
impl UnsafeUnpin for ChordExpression
impl UnwindSafe for ChordExpression
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