#[repr(C)]pub struct HAL_CANStreamMessage {
pub messageID: u32,
pub timeStamp: u32,
pub data: [u8; 8],
pub dataSize: u8,
}Expand description
Storage for CAN Stream Messages.
Fields§
§messageID: u32§timeStamp: u32§data: [u8; 8]§dataSize: u8Trait Implementations§
Source§impl Clone for HAL_CANStreamMessage
impl Clone for HAL_CANStreamMessage
Source§fn clone(&self) -> HAL_CANStreamMessage
fn clone(&self) -> HAL_CANStreamMessage
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 HAL_CANStreamMessage
impl Debug for HAL_CANStreamMessage
Source§impl Default for HAL_CANStreamMessage
impl Default for HAL_CANStreamMessage
Source§fn default() -> HAL_CANStreamMessage
fn default() -> HAL_CANStreamMessage
Returns the “default value” for a type. Read more
impl Copy for HAL_CANStreamMessage
Auto Trait Implementations§
impl Freeze for HAL_CANStreamMessage
impl RefUnwindSafe for HAL_CANStreamMessage
impl Send for HAL_CANStreamMessage
impl Sync for HAL_CANStreamMessage
impl Unpin for HAL_CANStreamMessage
impl UnwindSafe for HAL_CANStreamMessage
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