pub enum WpaEncryption {
NONE,
WEP,
TKIP,
CCMP,
}Expand description
Describes network’s encryption method
Variants§
NONE
No encryption
WEP
Wired Equivalent Privacy
Obsolete WPA’s encryption
TKIP
Temporal Key Integrity Protocol
Old WPA’s encryption
CCMP
Modern AES based encryption for WPA2
Implementations§
Trait Implementations§
Source§impl Clone for WpaEncryption
impl Clone for WpaEncryption
Source§fn clone(&self) -> WpaEncryption
fn clone(&self) -> WpaEncryption
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 WpaEncryption
impl Debug for WpaEncryption
Source§impl PartialEq for WpaEncryption
impl PartialEq for WpaEncryption
impl Eq for WpaEncryption
impl StructuralPartialEq for WpaEncryption
Auto Trait Implementations§
impl Freeze for WpaEncryption
impl RefUnwindSafe for WpaEncryption
impl Send for WpaEncryption
impl Sync for WpaEncryption
impl Unpin for WpaEncryption
impl UnwindSafe for WpaEncryption
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