Struct canfd_frame

#[repr(C, align(8))]
pub struct canfd_frame { pub can_id: canid_t, pub len: u8, pub flags: u8, pub data: [u8; 64], /* private fields */ }

Fields

can_id: canid_t
len: u8
flags: u8
data: [u8; 64]

Trait Implementations

impl Clone for canfd_frame

fn clone(&self) -> canfd_frame

impl Copy for canfd_frame

impl Debug for canfd_frame

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

impl Eq for canfd_frame

impl Hash for canfd_frame

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

impl PartialEq for canfd_frame

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

impl StructuralPartialEq for canfd_frame

Auto Trait Implementations

impl Freeze for canfd_frame

impl RefUnwindSafe for canfd_frame

impl Send for canfd_frame

impl Sync for canfd_frame

impl Unpin for canfd_frame

impl UnsafeUnpin for canfd_frame

impl UnwindSafe for canfd_frame

Blanket Implementations

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

fn type_id(&self) -> TypeId

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

fn borrow(&self) -> &T

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

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

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

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

impl<T> From<T> for canfd_frame

fn from(t: T) -> T

Returns the argument unchanged.

impl<T, U> Into<U> for canfd_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 canfd_frame where U: Into<T>,

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

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

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