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