pub enum SongNote {
Melody(MelodyNote),
Bass(BassNote),
}Variants§
Melody(MelodyNote)
Bass(BassNote)
Trait Implementations§
impl Copy for SongNote
impl StructuralPartialEq for SongNote
Auto Trait Implementations§
impl Freeze for SongNote
impl RefUnwindSafe for SongNote
impl Send for SongNote
impl Sync for SongNote
impl Unpin for SongNote
impl UnsafeUnpin for SongNote
impl UnwindSafe for SongNote
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