#[non_exhaustive]#[repr(u32)]pub enum nl80211_mesh_setup_params {
__NL80211_MESH_SETUP_INVALID = 0,
NL80211_MESH_SETUP_ENABLE_VENDOR_PATH_SEL = 1,
NL80211_MESH_SETUP_ENABLE_VENDOR_METRIC = 2,
NL80211_MESH_SETUP_IE = 3,
NL80211_MESH_SETUP_USERSPACE_AUTH = 4,
NL80211_MESH_SETUP_USERSPACE_AMPE = 5,
NL80211_MESH_SETUP_ENABLE_VENDOR_SYNC = 6,
NL80211_MESH_SETUP_USERSPACE_MPM = 7,
NL80211_MESH_SETUP_AUTH_PROTOCOL = 8,
__NL80211_MESH_SETUP_ATTR_AFTER_LAST = 9,
}
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_MESH_SETUP_INVALID = 0
NL80211_MESH_SETUP_ENABLE_VENDOR_PATH_SEL = 1
NL80211_MESH_SETUP_ENABLE_VENDOR_METRIC = 2
NL80211_MESH_SETUP_IE = 3
NL80211_MESH_SETUP_USERSPACE_AUTH = 4
NL80211_MESH_SETUP_USERSPACE_AMPE = 5
NL80211_MESH_SETUP_ENABLE_VENDOR_SYNC = 6
NL80211_MESH_SETUP_USERSPACE_MPM = 7
NL80211_MESH_SETUP_AUTH_PROTOCOL = 8
__NL80211_MESH_SETUP_ATTR_AFTER_LAST = 9
Implementations§
Source§impl nl80211_mesh_setup_params
impl nl80211_mesh_setup_params
pub const NL80211_MESH_SETUP_ATTR_MAX: nl80211_mesh_setup_params = nl80211_mesh_setup_params::NL80211_MESH_SETUP_AUTH_PROTOCOL
Trait Implementations§
Source§impl Clone for nl80211_mesh_setup_params
impl Clone for nl80211_mesh_setup_params
Source§fn clone(&self) -> nl80211_mesh_setup_params
fn clone(&self) -> nl80211_mesh_setup_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_mesh_setup_params
impl Debug for nl80211_mesh_setup_params
Source§impl Hash for nl80211_mesh_setup_params
impl Hash for nl80211_mesh_setup_params
impl Copy for nl80211_mesh_setup_params
impl Eq for nl80211_mesh_setup_params
impl StructuralPartialEq for nl80211_mesh_setup_params
Auto Trait Implementations§
impl Freeze for nl80211_mesh_setup_params
impl RefUnwindSafe for nl80211_mesh_setup_params
impl Send for nl80211_mesh_setup_params
impl Sync for nl80211_mesh_setup_params
impl Unpin for nl80211_mesh_setup_params
impl UnwindSafe for nl80211_mesh_setup_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