#[non_exhaustive]#[repr(u32)]pub enum nl80211_survey_info {
Show 14 variants
__NL80211_SURVEY_INFO_INVALID = 0,
NL80211_SURVEY_INFO_FREQUENCY = 1,
NL80211_SURVEY_INFO_NOISE = 2,
NL80211_SURVEY_INFO_IN_USE = 3,
NL80211_SURVEY_INFO_TIME = 4,
NL80211_SURVEY_INFO_TIME_BUSY = 5,
NL80211_SURVEY_INFO_TIME_EXT_BUSY = 6,
NL80211_SURVEY_INFO_TIME_RX = 7,
NL80211_SURVEY_INFO_TIME_TX = 8,
NL80211_SURVEY_INFO_TIME_SCAN = 9,
NL80211_SURVEY_INFO_PAD = 10,
NL80211_SURVEY_INFO_TIME_BSS_RX = 11,
NL80211_SURVEY_INFO_FREQUENCY_OFFSET = 12,
__NL80211_SURVEY_INFO_AFTER_LAST = 13,
}
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_SURVEY_INFO_INVALID = 0
NL80211_SURVEY_INFO_FREQUENCY = 1
NL80211_SURVEY_INFO_NOISE = 2
NL80211_SURVEY_INFO_IN_USE = 3
NL80211_SURVEY_INFO_TIME = 4
NL80211_SURVEY_INFO_TIME_BUSY = 5
NL80211_SURVEY_INFO_TIME_EXT_BUSY = 6
NL80211_SURVEY_INFO_TIME_RX = 7
NL80211_SURVEY_INFO_TIME_TX = 8
NL80211_SURVEY_INFO_TIME_SCAN = 9
NL80211_SURVEY_INFO_PAD = 10
NL80211_SURVEY_INFO_TIME_BSS_RX = 11
NL80211_SURVEY_INFO_FREQUENCY_OFFSET = 12
__NL80211_SURVEY_INFO_AFTER_LAST = 13
Implementations§
Source§impl nl80211_survey_info
impl nl80211_survey_info
pub const NL80211_SURVEY_INFO_MAX: nl80211_survey_info = nl80211_survey_info::NL80211_SURVEY_INFO_FREQUENCY_OFFSET
Trait Implementations§
Source§impl Clone for nl80211_survey_info
impl Clone for nl80211_survey_info
Source§fn clone(&self) -> nl80211_survey_info
fn clone(&self) -> nl80211_survey_info
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_survey_info
impl Debug for nl80211_survey_info
Source§impl Hash for nl80211_survey_info
impl Hash for nl80211_survey_info
Source§impl PartialEq for nl80211_survey_info
impl PartialEq for nl80211_survey_info
impl Copy for nl80211_survey_info
impl Eq for nl80211_survey_info
impl StructuralPartialEq for nl80211_survey_info
Auto Trait Implementations§
impl Freeze for nl80211_survey_info
impl RefUnwindSafe for nl80211_survey_info
impl Send for nl80211_survey_info
impl Sync for nl80211_survey_info
impl Unpin for nl80211_survey_info
impl UnwindSafe for nl80211_survey_info
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