[][src]Enum musictheory::types::Octave

pub enum Octave {
    DoubleContra,
    SubContra,
    Contra,
    Great,
    Small,
    OneLine,
    TwoLine,
    ThreeLine,
    FourLine,
    FiveLine,
    SixLine,
    SevenLine,
}

Octave of a Pitch.

Variants

DoubleContra
SubContra
Contra
Great
Small
OneLine
TwoLine
ThreeLine
FourLine
FiveLine
SixLine
SevenLine

Methods

impl Octave[src]

pub fn all() -> [Octave; 12][src]

pub fn scientific(&self) -> i8[src]

Scientific value for Octave.

pub fn next(&self) -> Option<Octave>[src]

Next Octave.

pub fn prev(&self) -> Option<Octave>[src]

Next Octave.

Trait Implementations

impl Clone for Octave[src]

impl Copy for Octave[src]

impl Debug for Octave[src]

impl Display for Octave[src]

impl PartialEq<Octave> for Octave[src]

impl PartialOrd<Octave> for Octave[src]

impl StructuralPartialEq for Octave[src]

Auto Trait Implementations

impl RefUnwindSafe for Octave

impl Send for Octave

impl Sync for Octave

impl Unpin for Octave

impl UnwindSafe for Octave

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.