Skip to main content

ChordSymbolFigure

Struct ChordSymbolFigure 

Source
pub struct ChordSymbolFigure {
    pub root: String,
    pub kind: &'static str,
    pub abbreviation: &'static str,
    pub bass: Option<String>,
    pub additions: Vec<String>,
    pub omissions: Vec<String>,
}
Expand description

A chord named as a lead-sheet symbol, in the parts music21’s chordSymbolFigureFromChord writes it from: the root, the kind and its abbreviation, the bass where it is not the root, and the notes the kind does not account for.

Display writes the figure as music21 writes it — C7, E-m7/G-, CaddD- — and Self::written_with writes it with another abbreviation for the kind.

Fields§

§root: String

The root the figure is written on.

A suspended second in inversion is read as a suspended fourth on its bass, as music21 reads it, so for that chord this is the bass.

§kind: &'static str

music21’s name for the kind, dominant-seventh.

§abbreviation: &'static str

The abbreviation music21 writes the kind with, 7.

§bass: Option<String>

The bass, where it is not the root.

§additions: Vec<String>

The notes of the chord the kind does not account for.

§omissions: Vec<String>

The notes the kind expects that the chord lacks. music21 writes these only beside additions: a chord that leaves out a note of its kind is still that kind, and says nothing about it.

Implementations§

Source§

impl ChordSymbolFigure

Source

pub fn from_chord(chord: &Chord) -> Option<Self>

The figure of a chord, or None for an empty chord, a microtonal one, or one no kind in music21’s table fits.

Source

pub fn from_chord_with_root(chord: &Chord, root: &Pitch) -> Option<Self>

The figure with the root fixed by the caller rather than inferred, which is how music21 names the augmented sixths.

Source

pub fn written_with(&self, abbreviation: &str) -> String

The figure written with another abbreviation for its kind, which is how music21 writes it after changeAbbreviationFor.

Trait Implementations§

Source§

impl Clone for ChordSymbolFigure

Source§

fn clone(&self) -> ChordSymbolFigure

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for ChordSymbolFigure

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Display for ChordSymbolFigure

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Eq for ChordSymbolFigure

Source§

impl PartialEq for ChordSymbolFigure

Source§

fn eq(&self, other: &ChordSymbolFigure) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl StructuralPartialEq for ChordSymbolFigure

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.