Enum network_manager::AccessPointCredentials[][src]

pub enum AccessPointCredentials {
    None,
    Wep {
        passphrase: String,
    },
    Wpa {
        passphrase: String,
    },
    Enterprise {
        identity: String,
        passphrase: String,
    },
}

Variants

Fields of Wep

Fields of Wpa

Fields of Enterprise

Trait Implementations

impl Debug for AccessPointCredentials
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations