#[non_exhaustive]#[repr(u32)]pub enum nl80211_if_combination_attrs {
NL80211_IFACE_COMB_UNSPEC = 0,
NL80211_IFACE_COMB_LIMITS = 1,
NL80211_IFACE_COMB_MAXNUM = 2,
NL80211_IFACE_COMB_STA_AP_BI_MATCH = 3,
NL80211_IFACE_COMB_NUM_CHANNELS = 4,
NL80211_IFACE_COMB_RADAR_DETECT_WIDTHS = 5,
NL80211_IFACE_COMB_RADAR_DETECT_REGIONS = 6,
NL80211_IFACE_COMB_BI_MIN_GCD = 7,
NUM_NL80211_IFACE_COMB = 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_IFACE_COMB_UNSPEC = 0
NL80211_IFACE_COMB_LIMITS = 1
NL80211_IFACE_COMB_MAXNUM = 2
NL80211_IFACE_COMB_STA_AP_BI_MATCH = 3
NL80211_IFACE_COMB_NUM_CHANNELS = 4
NL80211_IFACE_COMB_RADAR_DETECT_WIDTHS = 5
NL80211_IFACE_COMB_RADAR_DETECT_REGIONS = 6
NL80211_IFACE_COMB_BI_MIN_GCD = 7
NUM_NL80211_IFACE_COMB = 8
Implementations§
Source§impl nl80211_if_combination_attrs
impl nl80211_if_combination_attrs
pub const MAX_NL80211_IFACE_COMB: nl80211_if_combination_attrs = nl80211_if_combination_attrs::NL80211_IFACE_COMB_BI_MIN_GCD
Trait Implementations§
Source§impl Clone for nl80211_if_combination_attrs
impl Clone for nl80211_if_combination_attrs
Source§fn clone(&self) -> nl80211_if_combination_attrs
fn clone(&self) -> nl80211_if_combination_attrs
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_if_combination_attrs
impl Debug for nl80211_if_combination_attrs
Source§impl Hash for nl80211_if_combination_attrs
impl Hash for nl80211_if_combination_attrs
Source§impl PartialEq for nl80211_if_combination_attrs
impl PartialEq for nl80211_if_combination_attrs
Source§fn eq(&self, other: &nl80211_if_combination_attrs) -> bool
fn eq(&self, other: &nl80211_if_combination_attrs) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Copy for nl80211_if_combination_attrs
impl Eq for nl80211_if_combination_attrs
impl StructuralPartialEq for nl80211_if_combination_attrs
Auto Trait Implementations§
impl Freeze for nl80211_if_combination_attrs
impl RefUnwindSafe for nl80211_if_combination_attrs
impl Send for nl80211_if_combination_attrs
impl Sync for nl80211_if_combination_attrs
impl Unpin for nl80211_if_combination_attrs
impl UnwindSafe for nl80211_if_combination_attrs
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