Struct canxl_frame

#[repr(C)]
pub struct canxl_frame { pub prio: canid_t, pub flags: u8, pub sdt: u8, pub len: u16, pub af: u32, pub data: [u8; 2048] }

Fields

prio: canid_t
flags: u8
sdt: u8
len: u16
af: u32
data: [u8; 2048]

Trait Implementations

impl Clone for canxl_frame

fn clone(&self) -> canxl_frame

impl Copy for canxl_frame

impl Debug for canxl_frame

fn fmt(&self, f: &mut Formatter<'_>) -> Result

impl Eq for canxl_frame

impl Hash for canxl_frame

fn hash<__H: Hasher>(&self, state: &mut __H)

impl PartialEq for canxl_frame

fn eq(&self, other: &canxl_frame) -> bool

impl StructuralPartialEq for canxl_frame

Auto Trait Implementations

impl Freeze for canxl_frame

impl RefUnwindSafe for canxl_frame

impl Send for canxl_frame

impl Sync for canxl_frame

impl Unpin for canxl_frame

impl UnsafeUnpin for canxl_frame

impl UnwindSafe for canxl_frame

Blanket Implementations

impl<T> Any for canxl_frame where T: 'static + ?Sized,

fn type_id(&self) -> TypeId

impl<T> Borrow<T> for canxl_frame where T: ?Sized,

fn borrow(&self) -> &T

impl<T> BorrowMut<T> for canxl_frame where T: ?Sized,

fn borrow_mut(&mut self) -> &mut T

impl<T> CloneToUninit for canxl_frame where T: Clone,

unsafe fn clone_to_uninit(&self, dest: *mut u8)

impl<T> From<T> for canxl_frame

fn from(t: T) -> T

Returns the argument unchanged.

impl<T, U> Into<U> for canxl_frame where U: From<T>,

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

impl<T, U> TryFrom<U> for canxl_frame where U: Into<T>,

type Error = never;
fn try_from(value: U) -> Result<T, never>

impl<T, U> TryInto<U> for canxl_frame where U: TryFrom<T>,

type Error = <U as TryFrom<T>>::Error;
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>