#[non_exhaustive]#[repr(u32)]pub enum nl80211_sta_bss_param {
__NL80211_STA_BSS_PARAM_INVALID = 0,
NL80211_STA_BSS_PARAM_CTS_PROT = 1,
NL80211_STA_BSS_PARAM_SHORT_PREAMBLE = 2,
NL80211_STA_BSS_PARAM_SHORT_SLOT_TIME = 3,
NL80211_STA_BSS_PARAM_DTIM_PERIOD = 4,
NL80211_STA_BSS_PARAM_BEACON_INTERVAL = 5,
__NL80211_STA_BSS_PARAM_AFTER_LAST = 6,
}
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_STA_BSS_PARAM_INVALID = 0
NL80211_STA_BSS_PARAM_CTS_PROT = 1
NL80211_STA_BSS_PARAM_SHORT_PREAMBLE = 2
NL80211_STA_BSS_PARAM_SHORT_SLOT_TIME = 3
NL80211_STA_BSS_PARAM_DTIM_PERIOD = 4
NL80211_STA_BSS_PARAM_BEACON_INTERVAL = 5
__NL80211_STA_BSS_PARAM_AFTER_LAST = 6
Implementations§
Source§impl nl80211_sta_bss_param
impl nl80211_sta_bss_param
pub const NL80211_STA_BSS_PARAM_MAX: nl80211_sta_bss_param = nl80211_sta_bss_param::NL80211_STA_BSS_PARAM_BEACON_INTERVAL
Trait Implementations§
Source§impl Clone for nl80211_sta_bss_param
impl Clone for nl80211_sta_bss_param
Source§fn clone(&self) -> nl80211_sta_bss_param
fn clone(&self) -> nl80211_sta_bss_param
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_sta_bss_param
impl Debug for nl80211_sta_bss_param
Source§impl Hash for nl80211_sta_bss_param
impl Hash for nl80211_sta_bss_param
Source§impl PartialEq for nl80211_sta_bss_param
impl PartialEq for nl80211_sta_bss_param
impl Copy for nl80211_sta_bss_param
impl Eq for nl80211_sta_bss_param
impl StructuralPartialEq for nl80211_sta_bss_param
Auto Trait Implementations§
impl Freeze for nl80211_sta_bss_param
impl RefUnwindSafe for nl80211_sta_bss_param
impl Send for nl80211_sta_bss_param
impl Sync for nl80211_sta_bss_param
impl Unpin for nl80211_sta_bss_param
impl UnwindSafe for nl80211_sta_bss_param
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