[][src]Enum esp_idf_bindgen::wifi_event_t

#[repr(u32)]pub enum wifi_event_t {
    WIFI_EVENT_WIFI_READY,
    WIFI_EVENT_SCAN_DONE,
    WIFI_EVENT_STA_START,
    WIFI_EVENT_STA_STOP,
    WIFI_EVENT_STA_CONNECTED,
    WIFI_EVENT_STA_DISCONNECTED,
    WIFI_EVENT_STA_AUTHMODE_CHANGE,
    WIFI_EVENT_STA_WPS_ER_SUCCESS,
    WIFI_EVENT_STA_WPS_ER_FAILED,
    WIFI_EVENT_STA_WPS_ER_TIMEOUT,
    WIFI_EVENT_STA_WPS_ER_PIN,
    WIFI_EVENT_STA_WPS_ER_PBC_OVERLAP,
    WIFI_EVENT_AP_START,
    WIFI_EVENT_AP_STOP,
    WIFI_EVENT_AP_STACONNECTED,
    WIFI_EVENT_AP_STADISCONNECTED,
    WIFI_EVENT_AP_PROBEREQRECVED,
    WIFI_EVENT_MAX,
}

WiFi event declarations

Variants

WIFI_EVENT_WIFI_READY

< ESP32 WiFi ready

WIFI_EVENT_SCAN_DONE

< ESP32 finish scanning AP

WIFI_EVENT_STA_START

< ESP32 station start

WIFI_EVENT_STA_STOP

< ESP32 station stop

WIFI_EVENT_STA_CONNECTED

< ESP32 station connected to AP

WIFI_EVENT_STA_DISCONNECTED

< ESP32 station disconnected from AP

WIFI_EVENT_STA_AUTHMODE_CHANGE

< the auth mode of AP connected by ESP32 station changed

WIFI_EVENT_STA_WPS_ER_SUCCESS

< ESP32 station wps succeeds in enrollee mode

WIFI_EVENT_STA_WPS_ER_FAILED

< ESP32 station wps fails in enrollee mode

WIFI_EVENT_STA_WPS_ER_TIMEOUT

< ESP32 station wps timeout in enrollee mode

WIFI_EVENT_STA_WPS_ER_PIN

< ESP32 station wps pin code in enrollee mode

WIFI_EVENT_STA_WPS_ER_PBC_OVERLAP

< ESP32 station wps overlap in enrollee mode

WIFI_EVENT_AP_START

< ESP32 soft-AP start

WIFI_EVENT_AP_STOP

< ESP32 soft-AP stop

WIFI_EVENT_AP_STACONNECTED

< a station connected to ESP32 soft-AP

WIFI_EVENT_AP_STADISCONNECTED

< a station disconnected from ESP32 soft-AP

WIFI_EVENT_AP_PROBEREQRECVED

< Receive probe request packet in soft-AP interface

WIFI_EVENT_MAX

< Invalid WiFi event ID

Trait Implementations

impl Clone for wifi_event_t[src]

impl Copy for wifi_event_t[src]

impl Debug for wifi_event_t[src]

impl Eq for wifi_event_t[src]

impl Hash for wifi_event_t[src]

impl PartialEq<wifi_event_t> for wifi_event_t[src]

impl StructuralEq for wifi_event_t[src]

impl StructuralPartialEq for wifi_event_t[src]

Auto Trait Implementations

impl Send for wifi_event_t

impl Sync for wifi_event_t

impl Unpin for wifi_event_t

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.