pub struct EvNote {
pub channel: u8,
pub note: u8,
pub velocity: u8,
pub off_velocity: u8,
pub duration: u32,
}
Fields§
§channel: u8
§note: u8
§velocity: u8
§off_velocity: u8
§duration: u32
Trait Implementations§
source§impl Ord for EvNote
impl Ord for EvNote
source§impl PartialEq for EvNote
impl PartialEq for EvNote
source§impl PartialOrd for EvNote
impl PartialOrd for EvNote
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for EvNote
impl Eq for EvNote
impl EventData for EvNote
impl StructuralEq for EvNote
impl StructuralPartialEq for EvNote
Auto Trait Implementations§
impl RefUnwindSafe for EvNote
impl Send for EvNote
impl Sync for EvNote
impl Unpin for EvNote
impl UnwindSafe for EvNote
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