#[repr(i64)]pub enum CWSecurity {
Show 15 variants
None = 0,
WEP = 1,
WPAPersonal = 2,
WPAPersonalMixed = 3,
WPA2Personal = 4,
Personal = 5,
DynamicWEP = 6,
WPAEnterprise = 7,
WPAEnterpriseMixed = 8,
WPA2Enterprise = 9,
Enterprise = 10,
WPA3Personal = 11,
WPA3Enterprise = 12,
WPA3Transition = 13,
Unknown = 9_223_372_036_854_775_807,
}Expand description
“CoreWLAN security types.”
Variants§
None = 0
“Open System authentication.”
WEP = 1
“WEP security.”
WPAPersonal = 2
“WPA Personal authentication.”
WPAPersonalMixed = 3
“WPA/WPA2 Personal authentication.”
WPA2Personal = 4
“WPA2 Personal authentication.”
Personal = 5
“Personal authentication.”
DynamicWEP = 6
“Dynamic WEP security.”
WPAEnterprise = 7
“WPA Enterprise authentication.”
WPAEnterpriseMixed = 8
“WPA/WPA2 Enterprise authentication.”
WPA2Enterprise = 9
“WPA2 Enterprise authentication.”
Enterprise = 10
“Enterprise authentication.”
WPA3Personal = 11
“WPA3 Personal authentication.”
WPA3Enterprise = 12
“WPA3 Enterprise authentication.”
WPA3Transition = 13
“WPA3 Transition (WPA3/WPA2 Personal) authentication.”
Unknown = 9_223_372_036_854_775_807
“Unknown security type.”
Trait Implementations§
Source§impl Clone for CWSecurity
impl Clone for CWSecurity
Source§fn clone(&self) -> CWSecurity
fn clone(&self) -> CWSecurity
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 CWSecurity
impl Debug for CWSecurity
Source§impl PartialEq for CWSecurity
impl PartialEq for CWSecurity
impl Copy for CWSecurity
impl Eq for CWSecurity
impl StructuralPartialEq for CWSecurity
Auto Trait Implementations§
impl Freeze for CWSecurity
impl RefUnwindSafe for CWSecurity
impl Send for CWSecurity
impl Sync for CWSecurity
impl Unpin for CWSecurity
impl UnwindSafe for CWSecurity
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