pub struct AnalogConfig {
pub label: Label,
pub cc: u8,
pub channel: u8,
pub min: u8,
pub max: u8,
}Fields§
§label: Label§cc: u8§channel: u8§min: u8§max: u8Trait Implementations§
Source§impl Clone for AnalogConfig
impl Clone for AnalogConfig
Source§fn clone(&self) -> AnalogConfig
fn clone(&self) -> AnalogConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AnalogConfig
impl Debug for AnalogConfig
Source§impl<'de> Deserialize<'de> for AnalogConfig
impl<'de> Deserialize<'de> for AnalogConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for AnalogConfig
Source§impl PartialEq for AnalogConfig
impl PartialEq for AnalogConfig
Source§fn eq(&self, other: &AnalogConfig) -> bool
fn eq(&self, other: &AnalogConfig) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AnalogConfig
impl Serialize for AnalogConfig
impl StructuralPartialEq for AnalogConfig
Auto Trait Implementations§
impl Freeze for AnalogConfig
impl RefUnwindSafe for AnalogConfig
impl Send for AnalogConfig
impl Sync for AnalogConfig
impl Unpin for AnalogConfig
impl UnsafeUnpin for AnalogConfig
impl UnwindSafe for AnalogConfig
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