pub enum SeventhChordKind {
MajorSeventh,
MinorSeventh,
Dominant,
HalfDiminished,
Diminished,
MinorMajor,
}Variants§
Implementations§
Source§impl SeventhChordKind
impl SeventhChordKind
pub const DOMINANT: Self = Self::Dominant
pub const MAJOR_SEVENTH: Self = Self::MajorSeventh
pub const MINOR_SEVENTH: Self = Self::MinorSeventh
Trait Implementations§
Source§impl Clone for SeventhChordKind
impl Clone for SeventhChordKind
Source§fn clone(&self) -> SeventhChordKind
fn clone(&self) -> SeventhChordKind
Returns a duplicate of the value. Read more
1.0.0 · 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 SeventhChordKind
impl Debug for SeventhChordKind
Source§impl Display for SeventhChordKind
impl Display for SeventhChordKind
Source§impl FromStr for SeventhChordKind
impl FromStr for SeventhChordKind
Source§impl Hash for SeventhChordKind
impl Hash for SeventhChordKind
Source§impl Ord for SeventhChordKind
impl Ord for SeventhChordKind
Source§fn cmp(&self, other: &SeventhChordKind) -> Ordering
fn cmp(&self, other: &SeventhChordKind) -> Ordering
1.21.0 · 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 SeventhChordKind
impl PartialEq for SeventhChordKind
Source§impl PartialOrd for SeventhChordKind
impl PartialOrd for SeventhChordKind
impl Copy for SeventhChordKind
impl Eq for SeventhChordKind
impl StructuralPartialEq for SeventhChordKind
Auto Trait Implementations§
impl Freeze for SeventhChordKind
impl RefUnwindSafe for SeventhChordKind
impl Send for SeventhChordKind
impl Sync for SeventhChordKind
impl Unpin for SeventhChordKind
impl UnsafeUnpin for SeventhChordKind
impl UnwindSafe for SeventhChordKind
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