pub enum SelectResult {
Success,
WrongPsk,
NotFound,
PendingSelect,
InvalidNetworkId,
Timeout,
AlreadyConnected,
}
Expand description
Result from selecting a network, including a success or a specific failure (eg: incorect psk). Timeout does not necessarily mean failure; it only means that we did not received a parseable response. It could be that some valid message isn’t being parsed by the library.
Variants§
Trait Implementations§
Source§impl Debug for SelectResult
impl Debug for SelectResult
Auto Trait Implementations§
impl Freeze for SelectResult
impl RefUnwindSafe for SelectResult
impl Send for SelectResult
impl Sync for SelectResult
impl Unpin for SelectResult
impl UnwindSafe for SelectResult
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