pub struct MidiMapping {
pub channel: u8,
pub control_number: u8,
pub value: u8,
pub typ: u8,
pub param_index: u8,
pub min_value: u8,
pub max_value: u8,
}
Fields§
§channel: u8
§control_number: u8
§value: u8
§typ: u8
§param_index: u8
§min_value: u8
§max_value: u8
Implementations§
Trait Implementations§
Source§impl Clone for MidiMapping
impl Clone for MidiMapping
Source§fn clone(&self) -> MidiMapping
fn clone(&self) -> MidiMapping
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 MidiMapping
impl Debug for MidiMapping
Source§impl PartialEq for MidiMapping
impl PartialEq for MidiMapping
impl StructuralPartialEq for MidiMapping
Auto Trait Implementations§
impl Freeze for MidiMapping
impl RefUnwindSafe for MidiMapping
impl Send for MidiMapping
impl Sync for MidiMapping
impl Unpin for MidiMapping
impl UnwindSafe for MidiMapping
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