Struct embedded_hal::can::StandardId
source · [−]pub struct StandardId(_);
Expand description
Standard 11-bit CAN Identifier (0..=0x7FF
).
Implementations
sourceimpl StandardId
impl StandardId
sourcepub fn new(raw: u16) -> Option<Self>
pub 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
Using this method can create an invalid ID and is thus marked as unsafe.
Trait Implementations
sourceimpl Clone for StandardId
impl Clone for StandardId
sourcefn clone(&self) -> StandardId
fn clone(&self) -> StandardId
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for StandardId
impl Debug for StandardId
sourceimpl From<StandardId> for Id
impl From<StandardId> for Id
sourcefn from(id: StandardId) -> Self
fn from(id: StandardId) -> Self
Performs the conversion.
sourceimpl PartialEq<StandardId> for StandardId
impl PartialEq<StandardId> for StandardId
sourcefn 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 ==
. Read more
sourcefn ne(&self, other: &StandardId) -> bool
fn ne(&self, other: &StandardId) -> bool
This method tests for !=
.
impl Copy for StandardId
impl Eq for StandardId
impl StructuralEq for StandardId
impl StructuralPartialEq for StandardId
Auto Trait Implementations
impl RefUnwindSafe for StandardId
impl Send for StandardId
impl Sync for StandardId
impl Unpin for StandardId
impl UnwindSafe for StandardId
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more