#[non_exhaustive]pub enum WifiStaState {
Started,
Connected,
Disconnected,
Stopped,
Invalid,
}Available on crate feature
wifi only.Expand description
Wi-Fi interface for station state.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Started
Station started.
Connected
Station connected.
Disconnected
Station disconnected.
Stopped
Station stopped
Invalid
Invalid state.
Trait Implementations§
Source§impl Debug for WifiStaState
impl Debug for WifiStaState
Source§impl Format for WifiStaState
impl Format for WifiStaState
Source§impl From<WifiEvent> for WifiStaState
impl From<WifiEvent> for WifiStaState
Source§fn from(event: WifiEvent) -> WifiStaState
fn from(event: WifiEvent) -> WifiStaState
Converts to this type from the input type.