pub enum AddressingMode {
Absent = 0,
Short = 2,
Extended = 3,
Unknown = 4,
}
Expand description
IEEE 802.15.4 addressing mode.
Variants§
Absent = 0
The address is absent.
Short = 2
The address is a short address.
Extended = 3
The address is an extended address.
Unknown = 4
Unknown addressing mode.
Implementations§
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 From<Address> for AddressingMode
impl From<Address> for AddressingMode
Source§impl From<u8> for AddressingMode
impl From<u8> for AddressingMode
Source§impl PartialEq for AddressingMode
impl PartialEq 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