Struct esp_idf_hal::can::Frame

source ·
pub struct Frame(/* private fields */);

Implementations§

source§

impl Frame

source

pub fn new(id: u32, extended: bool, data: &[u8]) -> Option<Self>

source

pub fn new_remote(id: u32, extended: bool, dlc: usize) -> Option<Self>

source

pub fn is_extended(&self) -> bool

source

pub fn is_remote_frame(&self) -> bool

source

pub fn identifier(&self) -> u32

source

pub fn dlc(&self) -> usize

source

pub fn data(&self) -> &[u8]

Trait Implementations§

source§

impl Display for Frame

source§

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

Formats the value using the given formatter. Read more
source§

impl Frame for Frame

source§

fn new(id: impl Into<Id>, data: &[u8]) -> Option<Self>

Creates a new frame. Read more
source§

fn new_remote(id: impl Into<Id>, dlc: usize) -> Option<Self>

Creates a new remote frame (RTR bit set). Read more
source§

fn is_extended(&self) -> bool

Returns true if this frame is a extended frame.
source§

fn is_standard(&self) -> bool

Returns true if this frame is a standard frame.
source§

fn is_remote_frame(&self) -> bool

Returns true if this frame is a remote frame.
source§

fn is_data_frame(&self) -> bool

Returns true if this frame is a data frame.
source§

fn id(&self) -> Id

Returns the frame identifier.
source§

fn dlc(&self) -> usize

Returns the data length code (DLC) which is in the range 0..8. Read more
source§

fn data(&self) -> &[u8]

Returns the frame data (0..8 bytes in length).
source§

impl Frame for Frame

source§

fn new(id: impl Into<Id>, data: &[u8]) -> Option<Self>

Creates a new frame. Read more
source§

fn new_remote(id: impl Into<Id>, dlc: usize) -> Option<Self>

Creates a new remote frame (RTR bit set). Read more
source§

fn is_extended(&self) -> bool

Returns true if this frame is a extended frame.
source§

fn is_standard(&self) -> bool

Returns true if this frame is a standard frame.
source§

fn is_remote_frame(&self) -> bool

Returns true if this frame is a remote frame.
source§

fn is_data_frame(&self) -> bool

Returns true if this frame is a data frame.
source§

fn id(&self) -> Id

Returns the frame identifier.
source§

fn dlc(&self) -> usize

Returns the data length code (DLC) which is in the range 0..8. Read more
source§

fn data(&self) -> &[u8]

Returns the frame data (0..8 bytes in length).

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,

§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

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

§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
§

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

§

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

Mutably borrows from an owned value. Read more
§

impl<T> From<T> for T

§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T, U> Into<U> for T
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> ToString for T
where T: Display + ?Sized,

§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
§

impl<T, U> TryFrom<U> for T
where 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>

Performs the conversion.
§

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

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
§

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

Performs the conversion.