pub enum ParameterNumberKind {
Rpn,
Nrpn,
}Expand description
Type of parameter number (RPN vs NRPN).
Variants§
Rpn
Registered Parameter Number (CC 100/101). Standard MIDI parameters with defined meanings.
Nrpn
Non-Registered Parameter Number (CC 98/99). Manufacturer/device-specific parameters.
Trait Implementations§
Source§impl Clone for ParameterNumberKind
impl Clone for ParameterNumberKind
Source§fn clone(&self) -> ParameterNumberKind
fn clone(&self) -> ParameterNumberKind
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 ParameterNumberKind
impl Debug for ParameterNumberKind
Source§impl PartialEq for ParameterNumberKind
impl PartialEq for ParameterNumberKind
impl Copy for ParameterNumberKind
impl Eq for ParameterNumberKind
impl StructuralPartialEq for ParameterNumberKind
Auto Trait Implementations§
impl Freeze for ParameterNumberKind
impl RefUnwindSafe for ParameterNumberKind
impl Send for ParameterNumberKind
impl Sync for ParameterNumberKind
impl Unpin for ParameterNumberKind
impl UnwindSafe for ParameterNumberKind
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