pub struct DecodedMessage {
pub name: String,
pub extended: bool,
pub signals: Vec<DecodedSignal>,
}Fields§
§name: String§extended: bool§signals: Vec<DecodedSignal>Trait Implementations§
Source§impl Clone for DecodedMessage
impl Clone for DecodedMessage
Source§fn clone(&self) -> DecodedMessage
fn clone(&self) -> DecodedMessage
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 DecodedMessage
impl RefUnwindSafe for DecodedMessage
impl Send for DecodedMessage
impl Sync for DecodedMessage
impl Unpin for DecodedMessage
impl UnsafeUnpin for DecodedMessage
impl UnwindSafe for DecodedMessage
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