pub struct ControlChangeControllerDestination {
pub channel: Channel,
pub control_number: u8,
pub param_ranges: Vec<(ControlledParameter, u8)>,
}
Expand description
Allows for the selection of the destination of a control change message.
Used by UniversalRealTimeMsg::GlobalParameterControl
.
Defined in CA-022.
Fields
channel: Channel
control_number: u8
A control number between 0x01
- 0x1F
or 0x40
- 0x5F
Values outside these ranges will be coerced
param_ranges: Vec<(ControlledParameter, u8)>
Any number of (ControlledParameter, range) pairs
Trait Implementations
sourceimpl Clone for ControlChangeControllerDestination
impl Clone for ControlChangeControllerDestination
sourcefn clone(&self) -> ControlChangeControllerDestination
fn clone(&self) -> ControlChangeControllerDestination
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl PartialEq<ControlChangeControllerDestination> for ControlChangeControllerDestination
impl PartialEq<ControlChangeControllerDestination> for ControlChangeControllerDestination
sourcefn eq(&self, other: &ControlChangeControllerDestination) -> bool
fn eq(&self, other: &ControlChangeControllerDestination) -> bool
impl Eq for ControlChangeControllerDestination
impl StructuralEq for ControlChangeControllerDestination
impl StructuralPartialEq for ControlChangeControllerDestination
Auto Trait Implementations
impl RefUnwindSafe for ControlChangeControllerDestination
impl Send for ControlChangeControllerDestination
impl Sync for ControlChangeControllerDestination
impl Unpin for ControlChangeControllerDestination
impl UnwindSafe for ControlChangeControllerDestination
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more