pub enum AccessPointCredentials {
None,
Wep {
passphrase: String,
},
Wpa {
passphrase: String,
},
Enterprise {
identity: String,
passphrase: String,
},
}Variants
None
Wep
Fields
passphrase: StringWpa
Fields
passphrase: StringEnterprise
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for AccessPointCredentials
impl Send for AccessPointCredentials
impl Sync for AccessPointCredentials
impl Unpin for AccessPointCredentials
impl UnwindSafe for AccessPointCredentials
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more