#[non_exhaustive]#[repr(u32)]pub enum nl80211_meshconf_params {
Show 33 variants
__NL80211_MESHCONF_INVALID = 0,
NL80211_MESHCONF_RETRY_TIMEOUT = 1,
NL80211_MESHCONF_CONFIRM_TIMEOUT = 2,
NL80211_MESHCONF_HOLDING_TIMEOUT = 3,
NL80211_MESHCONF_MAX_PEER_LINKS = 4,
NL80211_MESHCONF_MAX_RETRIES = 5,
NL80211_MESHCONF_TTL = 6,
NL80211_MESHCONF_AUTO_OPEN_PLINKS = 7,
NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES = 8,
NL80211_MESHCONF_PATH_REFRESH_TIME = 9,
NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT = 10,
NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT = 11,
NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL = 12,
NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME = 13,
NL80211_MESHCONF_HWMP_ROOTMODE = 14,
NL80211_MESHCONF_ELEMENT_TTL = 15,
NL80211_MESHCONF_HWMP_RANN_INTERVAL = 16,
NL80211_MESHCONF_GATE_ANNOUNCEMENTS = 17,
NL80211_MESHCONF_HWMP_PERR_MIN_INTERVAL = 18,
NL80211_MESHCONF_FORWARDING = 19,
NL80211_MESHCONF_RSSI_THRESHOLD = 20,
NL80211_MESHCONF_SYNC_OFFSET_MAX_NEIGHBOR = 21,
NL80211_MESHCONF_HT_OPMODE = 22,
NL80211_MESHCONF_HWMP_PATH_TO_ROOT_TIMEOUT = 23,
NL80211_MESHCONF_HWMP_ROOT_INTERVAL = 24,
NL80211_MESHCONF_HWMP_CONFIRMATION_INTERVAL = 25,
NL80211_MESHCONF_POWER_MODE = 26,
NL80211_MESHCONF_AWAKE_WINDOW = 27,
NL80211_MESHCONF_PLINK_TIMEOUT = 28,
NL80211_MESHCONF_CONNECTED_TO_GATE = 29,
NL80211_MESHCONF_NOLEARN = 30,
NL80211_MESHCONF_CONNECTED_TO_AS = 31,
__NL80211_MESHCONF_ATTR_AFTER_LAST = 32,
}
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_MESHCONF_INVALID = 0
NL80211_MESHCONF_RETRY_TIMEOUT = 1
NL80211_MESHCONF_CONFIRM_TIMEOUT = 2
NL80211_MESHCONF_HOLDING_TIMEOUT = 3
NL80211_MESHCONF_MAX_PEER_LINKS = 4
NL80211_MESHCONF_MAX_RETRIES = 5
NL80211_MESHCONF_TTL = 6
NL80211_MESHCONF_AUTO_OPEN_PLINKS = 7
NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES = 8
NL80211_MESHCONF_PATH_REFRESH_TIME = 9
NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT = 10
NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT = 11
NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL = 12
NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME = 13
NL80211_MESHCONF_HWMP_ROOTMODE = 14
NL80211_MESHCONF_ELEMENT_TTL = 15
NL80211_MESHCONF_HWMP_RANN_INTERVAL = 16
NL80211_MESHCONF_GATE_ANNOUNCEMENTS = 17
NL80211_MESHCONF_HWMP_PERR_MIN_INTERVAL = 18
NL80211_MESHCONF_FORWARDING = 19
NL80211_MESHCONF_RSSI_THRESHOLD = 20
NL80211_MESHCONF_SYNC_OFFSET_MAX_NEIGHBOR = 21
NL80211_MESHCONF_HT_OPMODE = 22
NL80211_MESHCONF_HWMP_PATH_TO_ROOT_TIMEOUT = 23
NL80211_MESHCONF_HWMP_ROOT_INTERVAL = 24
NL80211_MESHCONF_HWMP_CONFIRMATION_INTERVAL = 25
NL80211_MESHCONF_POWER_MODE = 26
NL80211_MESHCONF_AWAKE_WINDOW = 27
NL80211_MESHCONF_PLINK_TIMEOUT = 28
NL80211_MESHCONF_CONNECTED_TO_GATE = 29
NL80211_MESHCONF_NOLEARN = 30
NL80211_MESHCONF_CONNECTED_TO_AS = 31
__NL80211_MESHCONF_ATTR_AFTER_LAST = 32
Implementations§
Source§impl nl80211_meshconf_params
impl nl80211_meshconf_params
pub const NL80211_MESHCONF_ATTR_MAX: nl80211_meshconf_params = nl80211_meshconf_params::NL80211_MESHCONF_CONNECTED_TO_AS
Trait Implementations§
Source§impl Clone for nl80211_meshconf_params
impl Clone for nl80211_meshconf_params
Source§fn clone(&self) -> nl80211_meshconf_params
fn clone(&self) -> nl80211_meshconf_params
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_meshconf_params
impl Debug for nl80211_meshconf_params
Source§impl Hash for nl80211_meshconf_params
impl Hash for nl80211_meshconf_params
Source§impl PartialEq for nl80211_meshconf_params
impl PartialEq for nl80211_meshconf_params
impl Copy for nl80211_meshconf_params
impl Eq for nl80211_meshconf_params
impl StructuralPartialEq for nl80211_meshconf_params
Auto Trait Implementations§
impl Freeze for nl80211_meshconf_params
impl RefUnwindSafe for nl80211_meshconf_params
impl Send for nl80211_meshconf_params
impl Sync for nl80211_meshconf_params
impl Unpin for nl80211_meshconf_params
impl UnwindSafe for nl80211_meshconf_params
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