pub struct TimedNote {
pub onset: Time,
pub note: Note,
}Expand description
A note placed at an absolute onset time.
Fields§
§onset: TimeAbsolute onset time of the note.
note: NoteThe note sounded at onset.
Trait Implementations§
impl Eq for TimedNote
impl StructuralPartialEq for TimedNote
Auto Trait Implementations§
impl Freeze for TimedNote
impl RefUnwindSafe for TimedNote
impl Send for TimedNote
impl Sync for TimedNote
impl Unpin for TimedNote
impl UnsafeUnpin for TimedNote
impl UnwindSafe for TimedNote
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