[][src]Enum esp_idf_bindgen::ip_event_t

#[repr(u32)]pub enum ip_event_t {
    IP_EVENT_STA_GOT_IP,
    IP_EVENT_STA_LOST_IP,
    IP_EVENT_AP_STAIPASSIGNED,
    IP_EVENT_GOT_IP6,
    IP_EVENT_ETH_GOT_IP,
    IP_EVENT_PPP_GOT_IP,
    IP_EVENT_PPP_LOST_IP,
}

IP event declarations

Variants

IP_EVENT_STA_GOT_IP

< station got IP from connected AP

IP_EVENT_STA_LOST_IP

< station lost IP and the IP is reset to 0

IP_EVENT_AP_STAIPASSIGNED

< soft-AP assign an IP to a connected station

IP_EVENT_GOT_IP6

< station or ap or ethernet interface v6IP addr is preferred

IP_EVENT_ETH_GOT_IP

< ethernet got IP from connected AP

IP_EVENT_PPP_GOT_IP

< PPP interface got IP

IP_EVENT_PPP_LOST_IP

< PPP interface lost IP

Trait Implementations

impl Clone for ip_event_t[src]

impl Copy for ip_event_t[src]

impl Debug for ip_event_t[src]

impl Eq for ip_event_t[src]

impl Hash for ip_event_t[src]

impl PartialEq<ip_event_t> for ip_event_t[src]

impl StructuralEq for ip_event_t[src]

impl StructuralPartialEq for ip_event_t[src]

Auto Trait Implementations

impl Send for ip_event_t

impl Sync for ip_event_t

impl Unpin for ip_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.