[−][src]Struct cantact::Frame
Controller Area Network Frame
Fields
can_id: u32CAN frame arbitration ID.
can_dlc: u8CAN frame Data Length Code (DLC).
channel: u8Device channel used to send or receive the frame.
data: [u8; 8]Frame data contents.
ext: boolExtended (29 bit) arbitration identifier if true, standard (11 bit) arbitration identifer if false.
fd: boolCAN Flexible Data (CAN-FD) frame flag.
loopback: boolLoopback flag. When true, frame was sent by this device/channel. False for received frames.
rtr: boolRemote Transmission Request (RTR) flag.
Implementations
impl Frame[src]
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Frame
impl Send for Frame
impl Sync for Frame
impl Unpin for Frame
impl UnwindSafe for Frame
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,