pub enum FrameType {
Beacon = 0,
Data = 1,
Ack = 2,
MacCommand = 3,
Multipurpose = 5,
FragmentOrFrak = 6,
Extended = 7,
Unknown = 8,
}
Expand description
IEEE 802.15.4 frame type.
Variants§
Beacon = 0
Beacon frame.
Data = 1
Data frame.
Ack = 2
Acknowledgement frame.
MacCommand = 3
MAC command frame.
Multipurpose = 5
Multipurpose frame.
FragmentOrFrak = 6
Fragmentation frame.
Extended = 7
Extended frame.
Unknown = 8
Unknown frame type.
Trait Implementations§
impl Copy for FrameType
impl Eq for FrameType
impl StructuralPartialEq for FrameType
Auto Trait Implementations§
impl Freeze for FrameType
impl RefUnwindSafe for FrameType
impl Send for FrameType
impl Sync for FrameType
impl Unpin for FrameType
impl UnwindSafe for FrameType
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