Struct midi_msg::Tuning[][src]

pub struct Tuning {
    pub semitone: u8,
    pub fraction: u16,
}

Used to represent a tuning by TuningNoteChange and KeyBasedTuningDump.

Fields

semitone: u8

The semitone corresponding with the same MIDI note number, 0-127

fraction: u16

Fraction of semitones above the semitone, in .0061-cent units. 0-16383

Implementations

impl Tuning[src]

pub fn from_freq(freq: f32) -> Self[src]

Trait Implementations

impl Clone for Tuning[src]

impl Copy for Tuning[src]

impl Debug for Tuning[src]

impl PartialEq<Tuning> for Tuning[src]

impl StructuralPartialEq for Tuning[src]

Auto Trait Implementations

impl RefUnwindSafe for Tuning

impl Send for Tuning

impl Sync for Tuning

impl Unpin for Tuning

impl UnwindSafe for Tuning

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, 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.