pub enum FrameVersion {
Ieee802154_2003,
Ieee802154_2006,
Ieee802154,
Unknown(u8),
}Expand description
IEEE 802.15.4 addressing mode for destination and source addresses.
Variants§
Trait Implementations§
Source§impl Clone for FrameVersion
impl Clone for FrameVersion
Source§fn clone(&self) -> FrameVersion
fn clone(&self) -> FrameVersion
Returns a duplicate 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 FrameVersion
impl Debug for FrameVersion
Source§impl From<FrameVersion> for u8
impl From<FrameVersion> for u8
Source§fn from(value: FrameVersion) -> Self
fn from(value: FrameVersion) -> Self
Converts to this type from the input type.
Source§impl From<u8> for FrameVersion
impl From<u8> for FrameVersion
Source§impl Hash for FrameVersion
impl Hash for FrameVersion
Source§impl Ord for FrameVersion
impl Ord for FrameVersion
Source§fn cmp(&self, other: &FrameVersion) -> Ordering
fn cmp(&self, other: &FrameVersion) -> 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 FrameVersion
impl PartialEq for FrameVersion
Source§impl PartialOrd for FrameVersion
impl PartialOrd for FrameVersion
impl Copy for FrameVersion
impl Eq for FrameVersion
impl StructuralPartialEq for FrameVersion
Auto Trait Implementations§
impl Freeze for FrameVersion
impl RefUnwindSafe for FrameVersion
impl Send for FrameVersion
impl Sync for FrameVersion
impl Unpin for FrameVersion
impl UnwindSafe for FrameVersion
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