Struct esp_idf_svc::hal::can::Frame
source · pub struct Frame(/* private fields */);
Implementations§
source§impl Frame
impl Frame
pub fn new(id: u32, flags: EnumSet<Flags>, data: &[u8]) -> Option<Frame>
pub fn new_remote(id: u32, extended: bool, dlc: usize) -> Option<Frame>
pub fn is_extended(&self) -> bool
pub fn is_remote_frame(&self) -> bool
pub fn identifier(&self) -> u32
pub fn dlc(&self) -> usize
pub fn data(&self) -> &[u8] ⓘ
Trait Implementations§
source§impl Frame for Frame
impl Frame for Frame
source§fn new_remote(id: impl Into<Id>, dlc: usize) -> Option<Frame>
fn new_remote(id: impl Into<Id>, dlc: usize) -> Option<Frame>
Creates a new remote frame (RTR bit set). Read more
source§fn is_extended(&self) -> bool
fn is_extended(&self) -> bool
Returns true if this frame is a extended frame.
source§fn is_standard(&self) -> bool
fn is_standard(&self) -> bool
Returns true if this frame is a standard frame.
source§fn is_remote_frame(&self) -> bool
fn is_remote_frame(&self) -> bool
Returns true if this frame is a remote frame.
source§fn is_data_frame(&self) -> bool
fn is_data_frame(&self) -> bool
Returns true if this frame is a data frame.
source§impl Frame for Frame
impl Frame for Frame
source§fn new_remote(id: impl Into<Id>, dlc: usize) -> Option<Frame>
fn new_remote(id: impl Into<Id>, dlc: usize) -> Option<Frame>
Creates a new remote frame (RTR bit set). Read more
source§fn is_extended(&self) -> bool
fn is_extended(&self) -> bool
Returns true if this frame is a extended frame.
source§fn is_standard(&self) -> bool
fn is_standard(&self) -> bool
Returns true if this frame is a standard frame.
source§fn is_remote_frame(&self) -> bool
fn is_remote_frame(&self) -> bool
Returns true if this frame is a remote frame.
source§fn is_data_frame(&self) -> bool
fn is_data_frame(&self) -> bool
Returns true if this frame is a data frame.
Auto Trait Implementations§
impl Freeze for Frame
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 Twhere
T: 'static + ?Sized,
impl<T> Any for Twhere
T: 'static + ?Sized,
§impl<T> Borrow<T> for Twhere
T: ?Sized,
impl<T> Borrow<T> for Twhere
T: ?Sized,
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more