Enum nl80211_rs::AuthenticationKeyManagement[][src]

pub enum AuthenticationKeyManagement {
    PairwiseMasterKeySecurityAssociation,
    PreSharedKey,
    FastTransitionPMKSA,
    FastTransitionPreSharedKey,
    PMKSASha256,
    PreSharedKeySha256,
    TunneledDirectLinkSetup,
    SimultaneousAuthenticationOfEquals,
    FastTransitionSAE,
    Reserved(u8),
    Vendor(u32),
}

Variants

Trait Implementations

impl Debug for AuthenticationKeyManagement
[src]

Formats the value using the given formatter. Read more

impl PartialEq for AuthenticationKeyManagement
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl From<u32> for AuthenticationKeyManagement
[src]

Performs the conversion.

impl From<AuthenticationKeyManagement> for u32
[src]

Performs the conversion.

impl Display for AuthenticationKeyManagement
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations