pub struct TimedNoteEvent {
pub start_seconds: f64,
pub duration_seconds: f64,
pub note: Note,
pub velocity: Velocity,
}Fields§
§start_seconds: f64§duration_seconds: f64§note: Note§velocity: VelocityTrait Implementations§
Source§impl Clone for TimedNoteEvent
impl Clone for TimedNoteEvent
Source§fn clone(&self) -> TimedNoteEvent
fn clone(&self) -> TimedNoteEvent
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 TimedNoteEvent
impl Debug for TimedNoteEvent
Source§impl PartialEq for TimedNoteEvent
impl PartialEq for TimedNoteEvent
Source§fn eq(&self, other: &TimedNoteEvent) -> bool
fn eq(&self, other: &TimedNoteEvent) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TimedNoteEvent
Auto Trait Implementations§
impl Freeze for TimedNoteEvent
impl RefUnwindSafe for TimedNoteEvent
impl Send for TimedNoteEvent
impl Sync for TimedNoteEvent
impl Unpin for TimedNoteEvent
impl UnsafeUnpin for TimedNoteEvent
impl UnwindSafe for TimedNoteEvent
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