#[non_exhaustive]#[repr(u32)]pub enum nl80211_scan_flags {
Show 15 variants
NL80211_SCAN_FLAG_LOW_PRIORITY = 1,
NL80211_SCAN_FLAG_FLUSH = 2,
NL80211_SCAN_FLAG_AP = 4,
NL80211_SCAN_FLAG_RANDOM_ADDR = 8,
NL80211_SCAN_FLAG_FILS_MAX_CHANNEL_TIME = 16,
NL80211_SCAN_FLAG_ACCEPT_BCAST_PROBE_RESP = 32,
NL80211_SCAN_FLAG_OCE_PROBE_REQ_HIGH_TX_RATE = 64,
NL80211_SCAN_FLAG_OCE_PROBE_REQ_DEFERRAL_SUPPRESSION = 128,
NL80211_SCAN_FLAG_LOW_SPAN = 256,
NL80211_SCAN_FLAG_LOW_POWER = 512,
NL80211_SCAN_FLAG_HIGH_ACCURACY = 1_024,
NL80211_SCAN_FLAG_RANDOM_SN = 2_048,
NL80211_SCAN_FLAG_MIN_PREQ_CONTENT = 4_096,
NL80211_SCAN_FLAG_FREQ_KHZ = 8_192,
NL80211_SCAN_FLAG_COLOCATED_6GHZ = 16_384,
}
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_SCAN_FLAG_LOW_PRIORITY = 1
NL80211_SCAN_FLAG_FLUSH = 2
NL80211_SCAN_FLAG_AP = 4
NL80211_SCAN_FLAG_RANDOM_ADDR = 8
NL80211_SCAN_FLAG_FILS_MAX_CHANNEL_TIME = 16
NL80211_SCAN_FLAG_ACCEPT_BCAST_PROBE_RESP = 32
NL80211_SCAN_FLAG_OCE_PROBE_REQ_HIGH_TX_RATE = 64
NL80211_SCAN_FLAG_OCE_PROBE_REQ_DEFERRAL_SUPPRESSION = 128
NL80211_SCAN_FLAG_LOW_SPAN = 256
NL80211_SCAN_FLAG_LOW_POWER = 512
NL80211_SCAN_FLAG_HIGH_ACCURACY = 1_024
NL80211_SCAN_FLAG_RANDOM_SN = 2_048
NL80211_SCAN_FLAG_MIN_PREQ_CONTENT = 4_096
NL80211_SCAN_FLAG_FREQ_KHZ = 8_192
NL80211_SCAN_FLAG_COLOCATED_6GHZ = 16_384
Trait Implementations§
Source§impl Clone for nl80211_scan_flags
impl Clone for nl80211_scan_flags
Source§fn clone(&self) -> nl80211_scan_flags
fn clone(&self) -> nl80211_scan_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_scan_flags
impl Debug for nl80211_scan_flags
Source§impl Hash for nl80211_scan_flags
impl Hash for nl80211_scan_flags
Source§impl PartialEq for nl80211_scan_flags
impl PartialEq for nl80211_scan_flags
impl Copy for nl80211_scan_flags
impl Eq for nl80211_scan_flags
impl StructuralPartialEq for nl80211_scan_flags
Auto Trait Implementations§
impl Freeze for nl80211_scan_flags
impl RefUnwindSafe for nl80211_scan_flags
impl Send for nl80211_scan_flags
impl Sync for nl80211_scan_flags
impl Unpin for nl80211_scan_flags
impl UnwindSafe for nl80211_scan_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