pub struct SignalGroups {
pub message_id: MessageId,
pub name: String,
pub repetitions: u64,
pub signal_names: Vec<String>,
}Expand description
Signal groups define a group of signals within a message
Fields§
§message_id: MessageId§name: String§repetitions: u64§signal_names: Vec<String>Trait Implementations§
Source§impl Clone for SignalGroups
impl Clone for SignalGroups
Source§fn clone(&self) -> SignalGroups
fn clone(&self) -> SignalGroups
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 SignalGroups
impl Debug for SignalGroups
Source§impl<'de> Deserialize<'de> for SignalGroups
impl<'de> Deserialize<'de> for SignalGroups
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
Source§impl PartialEq for SignalGroups
impl PartialEq for SignalGroups
Source§impl Serialize for SignalGroups
impl Serialize for SignalGroups
impl StructuralPartialEq for SignalGroups
Auto Trait Implementations§
impl Freeze for SignalGroups
impl RefUnwindSafe for SignalGroups
impl Send for SignalGroups
impl Sync for SignalGroups
impl Unpin for SignalGroups
impl UnwindSafe for SignalGroups
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