pub struct StandardId(/* private fields */);
Expand description
Standard 11-bit CAN Identifier (0..=0x7FF
).
Implementations§
source§impl StandardId
impl StandardId
sourcepub const ZERO: StandardId = _
pub const ZERO: StandardId = _
CAN ID 0
, the highest priority.
sourcepub const MAX: StandardId = _
pub const MAX: StandardId = _
CAN ID 0x7FF
, the lowest priority.
sourcepub const fn new(raw: u16) -> Option<StandardId>
pub const fn new(raw: u16) -> Option<StandardId>
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) -> StandardId
pub const unsafe fn new_unchecked(raw: u16) -> StandardId
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§
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) -> Id
fn from(id: StandardId) -> Id
Converts to this type from the input type.
source§impl Hash for StandardId
impl Hash for StandardId
source§impl Ord for StandardId
impl Ord for StandardId
source§fn cmp(&self, other: &StandardId) -> Ordering
fn cmp(&self, other: &StandardId) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for StandardId
impl PartialEq for StandardId
source§impl PartialOrd for StandardId
impl PartialOrd for StandardId
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)