Struct bxcan::StandardId
source · pub struct StandardId(/* private fields */);
Expand description
Standard 11-bit CAN Identifier (0..=0x7FF
).
Implementations§
source§impl StandardId
impl StandardId
sourcepub const fn new(raw: u16) -> Option<Self>
pub const fn new(raw: u16) -> Option<Self>
Tries to create a StandardId
from a raw 16-bit integer.
This will return None
if raw
is out of range of an 11-bit integer (> 0x7FF
).
sourcepub const unsafe fn new_unchecked(raw: u16) -> Self
pub const unsafe fn new_unchecked(raw: u16) -> Self
Creates a new StandardId
without checking if it is inside the valid range.
§Safety
The caller must ensure that raw
is in the valid range, otherwise the behavior is
undefined.
Trait Implementations§
source§impl Clone for StandardId
impl Clone for StandardId
source§fn clone(&self) -> StandardId
fn clone(&self) -> StandardId
Returns a copy 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 StandardId
impl Debug for StandardId
source§impl From<StandardId> for Id
impl From<StandardId> for Id
source§fn from(id: StandardId) -> Self
fn from(id: StandardId) -> Self
Converts to this type from the input type.
source§impl PartialEq for StandardId
impl PartialEq for StandardId
source§fn eq(&self, other: &StandardId) -> bool
fn eq(&self, other: &StandardId) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for StandardId
impl Eq for StandardId
impl StructuralPartialEq for StandardId
Auto Trait Implementations§
impl Freeze for StandardId
impl RefUnwindSafe for StandardId
impl Send for StandardId
impl Sync for StandardId
impl Unpin for StandardId
impl UnwindSafe for StandardId
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