pub struct NoteExpressionInt {
pub note_id: NoteId,
pub expression_type: u32,
pub value: u64,
}Expand description
Note Expression integer value event.
Used for discrete expression values.
Fields§
§note_id: NoteIdNote ID this expression applies to.
expression_type: u32Expression type.
value: u64Integer value.
Trait Implementations§
Source§impl Clone for NoteExpressionInt
impl Clone for NoteExpressionInt
Source§fn clone(&self) -> NoteExpressionInt
fn clone(&self) -> NoteExpressionInt
Returns a duplicate of the value. Read more
1.0.0 · 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 NoteExpressionInt
impl Debug for NoteExpressionInt
Source§impl PartialEq for NoteExpressionInt
impl PartialEq for NoteExpressionInt
impl Copy for NoteExpressionInt
impl StructuralPartialEq for NoteExpressionInt
Auto Trait Implementations§
impl Freeze for NoteExpressionInt
impl RefUnwindSafe for NoteExpressionInt
impl Send for NoteExpressionInt
impl Sync for NoteExpressionInt
impl Unpin for NoteExpressionInt
impl UnwindSafe for NoteExpressionInt
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