pub enum WifiConnectionError {
FailedToConnect(String),
FailedToDisconnect(String),
Other {
kind: WifiError,
},
}
Expand description
Error that occurs when attempting to connect to a wireless network.
Variants§
FailedToConnect(String)
Failed to connect to wireless network.
FailedToDisconnect(String)
Failed to disconnect from wireless network. Try turning the wireless interface down.
Other
A wireless error occurred.
Fields
§
kind: WifiError
Trait Implementations§
Source§impl Debug for WifiConnectionError
impl Debug for WifiConnectionError
Auto Trait Implementations§
impl Freeze for WifiConnectionError
impl !RefUnwindSafe for WifiConnectionError
impl Send for WifiConnectionError
impl Sync for WifiConnectionError
impl Unpin for WifiConnectionError
impl !UnwindSafe for WifiConnectionError
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