#[non_exhaustive]#[repr(u32)]pub enum nl80211_ftm_responder_stats {
__NL80211_FTM_STATS_INVALID = 0,
NL80211_FTM_STATS_SUCCESS_NUM = 1,
NL80211_FTM_STATS_PARTIAL_NUM = 2,
NL80211_FTM_STATS_FAILED_NUM = 3,
NL80211_FTM_STATS_ASAP_NUM = 4,
NL80211_FTM_STATS_NON_ASAP_NUM = 5,
NL80211_FTM_STATS_TOTAL_DURATION_MSEC = 6,
NL80211_FTM_STATS_UNKNOWN_TRIGGERS_NUM = 7,
NL80211_FTM_STATS_RESCHEDULE_REQUESTS_NUM = 8,
NL80211_FTM_STATS_OUT_OF_WINDOW_TRIGGERS_NUM = 9,
NL80211_FTM_STATS_PAD = 10,
__NL80211_FTM_STATS_AFTER_LAST = 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_FTM_STATS_INVALID = 0
NL80211_FTM_STATS_SUCCESS_NUM = 1
NL80211_FTM_STATS_PARTIAL_NUM = 2
NL80211_FTM_STATS_FAILED_NUM = 3
NL80211_FTM_STATS_ASAP_NUM = 4
NL80211_FTM_STATS_NON_ASAP_NUM = 5
NL80211_FTM_STATS_TOTAL_DURATION_MSEC = 6
NL80211_FTM_STATS_UNKNOWN_TRIGGERS_NUM = 7
NL80211_FTM_STATS_RESCHEDULE_REQUESTS_NUM = 8
NL80211_FTM_STATS_OUT_OF_WINDOW_TRIGGERS_NUM = 9
NL80211_FTM_STATS_PAD = 10
__NL80211_FTM_STATS_AFTER_LAST = 11
Implementations§
Source§impl nl80211_ftm_responder_stats
impl nl80211_ftm_responder_stats
pub const NL80211_FTM_STATS_MAX: nl80211_ftm_responder_stats = nl80211_ftm_responder_stats::NL80211_FTM_STATS_PAD
Trait Implementations§
Source§impl Clone for nl80211_ftm_responder_stats
impl Clone for nl80211_ftm_responder_stats
Source§fn clone(&self) -> nl80211_ftm_responder_stats
fn clone(&self) -> nl80211_ftm_responder_stats
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_ftm_responder_stats
impl Debug for nl80211_ftm_responder_stats
Source§impl Hash for nl80211_ftm_responder_stats
impl Hash for nl80211_ftm_responder_stats
impl Copy for nl80211_ftm_responder_stats
impl Eq for nl80211_ftm_responder_stats
impl StructuralPartialEq for nl80211_ftm_responder_stats
Auto Trait Implementations§
impl Freeze for nl80211_ftm_responder_stats
impl RefUnwindSafe for nl80211_ftm_responder_stats
impl Send for nl80211_ftm_responder_stats
impl Sync for nl80211_ftm_responder_stats
impl Unpin for nl80211_ftm_responder_stats
impl UnwindSafe for nl80211_ftm_responder_stats
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