pub enum AccessPointCredentials {
None,
Wep {
passphrase: String,
},
Wpa {
passphrase: String,
},
Enterprise {
identity: String,
passphrase: String,
},
}Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AccessPointCredentials
impl RefUnwindSafe for AccessPointCredentials
impl Send for AccessPointCredentials
impl Sync for AccessPointCredentials
impl Unpin for AccessPointCredentials
impl UnwindSafe for AccessPointCredentials
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