pub struct IndexedNoteEvent {
pub start_index: u64,
pub duration_indices: u64,
pub note: Note,
pub velocity: Velocity,
}Fields§
§start_index: u64§duration_indices: u64§note: Note§velocity: VelocityTrait Implementations§
Source§impl Clone for IndexedNoteEvent
impl Clone for IndexedNoteEvent
Source§fn clone(&self) -> IndexedNoteEvent
fn clone(&self) -> IndexedNoteEvent
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for IndexedNoteEvent
impl Debug for IndexedNoteEvent
Source§impl PartialEq for IndexedNoteEvent
impl PartialEq for IndexedNoteEvent
Source§fn eq(&self, other: &IndexedNoteEvent) -> bool
fn eq(&self, other: &IndexedNoteEvent) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for IndexedNoteEvent
Auto Trait Implementations§
impl Freeze for IndexedNoteEvent
impl RefUnwindSafe for IndexedNoteEvent
impl Send for IndexedNoteEvent
impl Sync for IndexedNoteEvent
impl Unpin for IndexedNoteEvent
impl UnsafeUnpin for IndexedNoteEvent
impl UnwindSafe for IndexedNoteEvent
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