#[non_exhaustive]#[repr(u32)]pub enum nl80211_probe_resp_offload_support_attr {
NL80211_PROBE_RESP_OFFLOAD_SUPPORT_WPS = 1,
NL80211_PROBE_RESP_OFFLOAD_SUPPORT_WPS2 = 2,
NL80211_PROBE_RESP_OFFLOAD_SUPPORT_P2P = 4,
NL80211_PROBE_RESP_OFFLOAD_SUPPORT_80211U = 8,
}
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_PROBE_RESP_OFFLOAD_SUPPORT_WPS = 1
NL80211_PROBE_RESP_OFFLOAD_SUPPORT_WPS2 = 2
NL80211_PROBE_RESP_OFFLOAD_SUPPORT_P2P = 4
NL80211_PROBE_RESP_OFFLOAD_SUPPORT_80211U = 8
Trait Implementations§
Source§impl Clone for nl80211_probe_resp_offload_support_attr
impl Clone for nl80211_probe_resp_offload_support_attr
Source§fn clone(&self) -> nl80211_probe_resp_offload_support_attr
fn clone(&self) -> nl80211_probe_resp_offload_support_attr
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_probe_resp_offload_support_attr
impl PartialEq for nl80211_probe_resp_offload_support_attr
Source§fn eq(&self, other: &nl80211_probe_resp_offload_support_attr) -> bool
fn eq(&self, other: &nl80211_probe_resp_offload_support_attr) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Copy for nl80211_probe_resp_offload_support_attr
impl Eq for nl80211_probe_resp_offload_support_attr
impl StructuralPartialEq for nl80211_probe_resp_offload_support_attr
Auto Trait Implementations§
impl Freeze for nl80211_probe_resp_offload_support_attr
impl RefUnwindSafe for nl80211_probe_resp_offload_support_attr
impl Send for nl80211_probe_resp_offload_support_attr
impl Sync for nl80211_probe_resp_offload_support_attr
impl Unpin for nl80211_probe_resp_offload_support_attr
impl UnwindSafe for nl80211_probe_resp_offload_support_attr
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