#[repr(u8)]
pub enum Degree {
Seven,
Nine,
Eleven,
Thirteen,
}Expand description
An enum representing the degree of a dominant chord.
Variants§
Trait Implementations§
source§impl HasStaticName for Degree
impl HasStaticName for Degree
source§fn static_name(&self) -> &'static str
fn static_name(&self) -> &'static str
Returns the static name of the type.
source§impl Ord for Degree
impl Ord for Degree
source§impl PartialEq<Degree> for Degree
impl PartialEq<Degree> for Degree
source§impl PartialOrd<Degree> for Degree
impl PartialOrd<Degree> for Degree
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read more