Enum ieee80211::AKMSuiteType
source · pub enum AKMSuiteType {
Reserved(u8),
IEEE802_1X,
PSK,
FTOver802_1X,
FTPSK,
IEEE802_1XSHA,
PSKSHA,
TDLS,
SAE,
FTOverSAE,
}
Expand description
Authentication and Key Management Suite
Variants§
Reserved(u8)
IEEE802_1X
IEEE 802.1X with RSNA default
PSK
Pre-Shared-Key
FTOver802_1X
FT auth negotiated over IEEE 802.1X
FTPSK
FT auth using PSK
IEEE802_1XSHA
IEEE 802.1X with SHA256 Key Derivation
PSKSHA
PSK with SHA256 Key Derivation
TDLS
TPK Handshake
SAE
SAE with SHA256
FTOverSAE
FT auth over SAE with SHA256
Trait Implementations§
source§impl Debug for AKMSuiteType
impl Debug for AKMSuiteType
source§impl PartialEq<AKMSuiteType> for AKMSuiteType
impl PartialEq<AKMSuiteType> for AKMSuiteType
source§fn eq(&self, other: &AKMSuiteType) -> bool
fn eq(&self, other: &AKMSuiteType) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AKMSuiteType
Auto Trait Implementations§
impl RefUnwindSafe for AKMSuiteType
impl Send for AKMSuiteType
impl Sync for AKMSuiteType
impl Unpin for AKMSuiteType
impl UnwindSafe for AKMSuiteType
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