#[repr(u8)]pub enum PromiscuousPktType {
Mgmt = 0,
Ctrl = 1,
Data = 2,
Misc = 3,
}
Expand description
Promiscuous frame type.
Passed to promiscuous mode RX callback to indicate the type of parameter in the buffer. docs
Variants§
Mgmt = 0
Management frame
Ctrl = 1
Control frame
Data = 2
Data frame
Misc = 3
Other type, such as MIMO etc.
Trait Implementations§
Source§impl Clone for PromiscuousPktType
impl Clone for PromiscuousPktType
Source§fn clone(&self) -> PromiscuousPktType
fn clone(&self) -> PromiscuousPktType
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 Format for PromiscuousPktType
impl Format for PromiscuousPktType
Source§impl PartialEq for PromiscuousPktType
impl PartialEq for PromiscuousPktType
impl Copy for PromiscuousPktType
impl StructuralPartialEq for PromiscuousPktType
Auto Trait Implementations§
impl Freeze for PromiscuousPktType
impl RefUnwindSafe for PromiscuousPktType
impl Send for PromiscuousPktType
impl Sync for PromiscuousPktType
impl Unpin for PromiscuousPktType
impl UnwindSafe for PromiscuousPktType
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