#[repr(i8)]pub enum BaseNote {
C = -9,
D = -7,
E = -5,
F = -4,
G = -2,
A = 0,
B = 2,
}Expand description
Offsets of the 7 white keys in the C Major scale (from A), in semitones.
Variants§
Trait Implementations§
impl Copy for BaseNote
Auto Trait Implementations§
impl Freeze for BaseNote
impl RefUnwindSafe for BaseNote
impl Send for BaseNote
impl Sync for BaseNote
impl Unpin for BaseNote
impl UnwindSafe for BaseNote
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