#[non_exhaustive]#[repr(u32)]pub(crate) enum nl80211_mntr_flags {
    __NL80211_MNTR_FLAG_INVALID = 0,
    NL80211_MNTR_FLAG_FCSFAIL = 1,
    NL80211_MNTR_FLAG_PLCPFAIL = 2,
    NL80211_MNTR_FLAG_CONTROL = 3,
    NL80211_MNTR_FLAG_OTHER_BSS = 4,
    NL80211_MNTR_FLAG_COOK_FRAMES = 5,
    NL80211_MNTR_FLAG_ACTIVE = 6,
    NL80211_MNTR_FLAG_SKIP_TX = 7,
    __NL80211_MNTR_FLAG_AFTER_LAST = 8,
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
__NL80211_MNTR_FLAG_INVALID = 0
NL80211_MNTR_FLAG_FCSFAIL = 1
NL80211_MNTR_FLAG_PLCPFAIL = 2
NL80211_MNTR_FLAG_CONTROL = 3
NL80211_MNTR_FLAG_OTHER_BSS = 4
NL80211_MNTR_FLAG_COOK_FRAMES = 5
NL80211_MNTR_FLAG_ACTIVE = 6
NL80211_MNTR_FLAG_SKIP_TX = 7
__NL80211_MNTR_FLAG_AFTER_LAST = 8
Implementations§
Source§impl nl80211_mntr_flags
 
impl nl80211_mntr_flags
pub const NL80211_MNTR_FLAG_MAX: nl80211_mntr_flags = nl80211_mntr_flags::NL80211_MNTR_FLAG_SKIP_TX
Trait Implementations§
Source§impl Clone for nl80211_mntr_flags
 
impl Clone for nl80211_mntr_flags
Source§fn clone(&self) -> nl80211_mntr_flags
 
fn clone(&self) -> nl80211_mntr_flags
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 nl80211_mntr_flags
 
impl Debug for nl80211_mntr_flags
Source§impl Hash for nl80211_mntr_flags
 
impl Hash for nl80211_mntr_flags
Source§impl PartialEq for nl80211_mntr_flags
 
impl PartialEq for nl80211_mntr_flags
impl Copy for nl80211_mntr_flags
impl Eq for nl80211_mntr_flags
impl StructuralPartialEq for nl80211_mntr_flags
Auto Trait Implementations§
impl Freeze for nl80211_mntr_flags
impl RefUnwindSafe for nl80211_mntr_flags
impl Send for nl80211_mntr_flags
impl Sync for nl80211_mntr_flags
impl Unpin for nl80211_mntr_flags
impl UnwindSafe for nl80211_mntr_flags
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