pub struct MidiNote {
pub is_on: bool,
pub channel: u8,
pub note_number: u8,
pub velocity: u8,
}
Fields§
§is_on: bool
§channel: u8
§note_number: u8
§velocity: u8
Trait Implementations§
impl Copy for MidiNote
Auto Trait Implementations§
impl Freeze for MidiNote
impl RefUnwindSafe for MidiNote
impl Send for MidiNote
impl Sync for MidiNote
impl Unpin for MidiNote
impl UnwindSafe for MidiNote
Blanket Implementations§
Source§impl<T> ActionTrait for T
impl<T> ActionTrait for T
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