pub struct DecodedSemanticMessage {
pub qualified_name: String,
pub arb_id: u32,
pub extended: bool,
pub fd: bool,
pub len: u8,
pub signals: Vec<DecodedSignalValue>,
}Fields§
§qualified_name: String§arb_id: u32§extended: bool§fd: bool§len: u8§signals: Vec<DecodedSignalValue>Trait Implementations§
Source§impl Clone for DecodedSemanticMessage
impl Clone for DecodedSemanticMessage
Source§fn clone(&self) -> DecodedSemanticMessage
fn clone(&self) -> DecodedSemanticMessage
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 moreAuto Trait Implementations§
impl Freeze for DecodedSemanticMessage
impl RefUnwindSafe for DecodedSemanticMessage
impl Send for DecodedSemanticMessage
impl Sync for DecodedSemanticMessage
impl Unpin for DecodedSemanticMessage
impl UnsafeUnpin for DecodedSemanticMessage
impl UnwindSafe for DecodedSemanticMessage
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