pub type WpaDescriptor = Wpa<()>;Expand description
WPA descriptor.
Describes the configuration of the WPA security protocol. WPA descriptors optionally specify a pairwise cipher. Descriptors that lack this information are simply less specific than descriptors that include it.
Aliased Type§
pub enum WpaDescriptor {
    Wpa1 {
        credentials: (),
    },
    Wpa2 {
        cipher: Option<Wpa2Cipher>,
        authentication: Authentication,
    },
    Wpa3 {
        cipher: Option<Wpa3Cipher>,
        authentication: Authentication,
    },
}