#[non_exhaustive]#[repr(u32)]pub enum nl80211_peer_measurement_ftm_capa {
__NL80211_PMSR_FTM_CAPA_ATTR_INVALID = 0,
NL80211_PMSR_FTM_CAPA_ATTR_ASAP = 1,
NL80211_PMSR_FTM_CAPA_ATTR_NON_ASAP = 2,
NL80211_PMSR_FTM_CAPA_ATTR_REQ_LCI = 3,
NL80211_PMSR_FTM_CAPA_ATTR_REQ_CIVICLOC = 4,
NL80211_PMSR_FTM_CAPA_ATTR_PREAMBLES = 5,
NL80211_PMSR_FTM_CAPA_ATTR_BANDWIDTHS = 6,
NL80211_PMSR_FTM_CAPA_ATTR_MAX_BURSTS_EXPONENT = 7,
NL80211_PMSR_FTM_CAPA_ATTR_MAX_FTMS_PER_BURST = 8,
NL80211_PMSR_FTM_CAPA_ATTR_TRIGGER_BASED = 9,
NL80211_PMSR_FTM_CAPA_ATTR_NON_TRIGGER_BASED = 10,
NUM_NL80211_PMSR_FTM_CAPA_ATTR = 11,
}
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_PMSR_FTM_CAPA_ATTR_INVALID = 0
NL80211_PMSR_FTM_CAPA_ATTR_ASAP = 1
NL80211_PMSR_FTM_CAPA_ATTR_NON_ASAP = 2
NL80211_PMSR_FTM_CAPA_ATTR_REQ_LCI = 3
NL80211_PMSR_FTM_CAPA_ATTR_REQ_CIVICLOC = 4
NL80211_PMSR_FTM_CAPA_ATTR_PREAMBLES = 5
NL80211_PMSR_FTM_CAPA_ATTR_BANDWIDTHS = 6
NL80211_PMSR_FTM_CAPA_ATTR_MAX_BURSTS_EXPONENT = 7
NL80211_PMSR_FTM_CAPA_ATTR_MAX_FTMS_PER_BURST = 8
NL80211_PMSR_FTM_CAPA_ATTR_TRIGGER_BASED = 9
NL80211_PMSR_FTM_CAPA_ATTR_NON_TRIGGER_BASED = 10
NUM_NL80211_PMSR_FTM_CAPA_ATTR = 11
Implementations§
Source§impl nl80211_peer_measurement_ftm_capa
impl nl80211_peer_measurement_ftm_capa
pub const NL80211_PMSR_FTM_CAPA_ATTR_MAX: nl80211_peer_measurement_ftm_capa = nl80211_peer_measurement_ftm_capa::NL80211_PMSR_FTM_CAPA_ATTR_NON_TRIGGER_BASED
Trait Implementations§
Source§impl Clone for nl80211_peer_measurement_ftm_capa
impl Clone for nl80211_peer_measurement_ftm_capa
Source§fn clone(&self) -> nl80211_peer_measurement_ftm_capa
fn clone(&self) -> nl80211_peer_measurement_ftm_capa
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 PartialEq for nl80211_peer_measurement_ftm_capa
impl PartialEq for nl80211_peer_measurement_ftm_capa
Source§fn eq(&self, other: &nl80211_peer_measurement_ftm_capa) -> bool
fn eq(&self, other: &nl80211_peer_measurement_ftm_capa) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Copy for nl80211_peer_measurement_ftm_capa
impl Eq for nl80211_peer_measurement_ftm_capa
impl StructuralPartialEq for nl80211_peer_measurement_ftm_capa
Auto Trait Implementations§
impl Freeze for nl80211_peer_measurement_ftm_capa
impl RefUnwindSafe for nl80211_peer_measurement_ftm_capa
impl Send for nl80211_peer_measurement_ftm_capa
impl Sync for nl80211_peer_measurement_ftm_capa
impl Unpin for nl80211_peer_measurement_ftm_capa
impl UnwindSafe for nl80211_peer_measurement_ftm_capa
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