#[non_exhaustive]#[repr(u32)]pub enum nl80211_reg_rule_flags {
Show 24 variants
NL80211_RRF_NO_OFDM = 1,
NL80211_RRF_NO_CCK = 2,
NL80211_RRF_NO_INDOOR = 4,
NL80211_RRF_NO_OUTDOOR = 8,
NL80211_RRF_DFS = 16,
NL80211_RRF_PTP_ONLY = 32,
NL80211_RRF_PTMP_ONLY = 64,
NL80211_RRF_NO_IR = 128,
__NL80211_RRF_NO_IBSS = 256,
NL80211_RRF_AUTO_BW = 2_048,
NL80211_RRF_IR_CONCURRENT = 4_096,
NL80211_RRF_NO_HT40MINUS = 8_192,
NL80211_RRF_NO_HT40PLUS = 16_384,
NL80211_RRF_NO_80MHZ = 32_768,
NL80211_RRF_NO_160MHZ = 65_536,
NL80211_RRF_NO_HE = 131_072,
NL80211_RRF_NO_320MHZ = 262_144,
NL80211_RRF_NO_EHT = 524_288,
NL80211_RRF_PSD = 1_048_576,
NL80211_RRF_DFS_CONCURRENT = 2_097_152,
NL80211_RRF_NO_6GHZ_VLP_CLIENT = 4_194_304,
NL80211_RRF_NO_6GHZ_AFC_CLIENT = 8_388_608,
NL80211_RRF_ALLOW_6GHZ_VLP_AP = 16_777_216,
NL80211_RRF_ALLOW_20MHZ_ACTIVITY = 33_554_432,
}
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_RRF_NO_OFDM = 1
NL80211_RRF_NO_CCK = 2
NL80211_RRF_NO_INDOOR = 4
NL80211_RRF_NO_OUTDOOR = 8
NL80211_RRF_DFS = 16
NL80211_RRF_PTP_ONLY = 32
NL80211_RRF_PTMP_ONLY = 64
NL80211_RRF_NO_IR = 128
__NL80211_RRF_NO_IBSS = 256
NL80211_RRF_AUTO_BW = 2_048
NL80211_RRF_IR_CONCURRENT = 4_096
NL80211_RRF_NO_HT40MINUS = 8_192
NL80211_RRF_NO_HT40PLUS = 16_384
NL80211_RRF_NO_80MHZ = 32_768
NL80211_RRF_NO_160MHZ = 65_536
NL80211_RRF_NO_HE = 131_072
NL80211_RRF_NO_320MHZ = 262_144
NL80211_RRF_NO_EHT = 524_288
NL80211_RRF_PSD = 1_048_576
NL80211_RRF_DFS_CONCURRENT = 2_097_152
NL80211_RRF_NO_6GHZ_VLP_CLIENT = 4_194_304
NL80211_RRF_NO_6GHZ_AFC_CLIENT = 8_388_608
NL80211_RRF_ALLOW_6GHZ_VLP_AP = 16_777_216
NL80211_RRF_ALLOW_20MHZ_ACTIVITY = 33_554_432
Trait Implementations§
Source§impl Clone for nl80211_reg_rule_flags
impl Clone for nl80211_reg_rule_flags
Source§fn clone(&self) -> nl80211_reg_rule_flags
fn clone(&self) -> nl80211_reg_rule_flags
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_reg_rule_flags
impl Debug for nl80211_reg_rule_flags
Source§impl Hash for nl80211_reg_rule_flags
impl Hash for nl80211_reg_rule_flags
Source§impl PartialEq for nl80211_reg_rule_flags
impl PartialEq for nl80211_reg_rule_flags
impl Copy for nl80211_reg_rule_flags
impl Eq for nl80211_reg_rule_flags
impl StructuralPartialEq for nl80211_reg_rule_flags
Auto Trait Implementations§
impl Freeze for nl80211_reg_rule_flags
impl RefUnwindSafe for nl80211_reg_rule_flags
impl Send for nl80211_reg_rule_flags
impl Sync for nl80211_reg_rule_flags
impl Unpin for nl80211_reg_rule_flags
impl UnwindSafe for nl80211_reg_rule_flags
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