[][src]Enum esp_idf_bindgen::wifi_promiscuous_pkt_type_t

#[repr(u32)]pub enum wifi_promiscuous_pkt_type_t {
    WIFI_PKT_MGMT,
    WIFI_PKT_CTRL,
    WIFI_PKT_DATA,
    WIFI_PKT_MISC,
}

@brief Promiscuous frame type

Passed to promiscuous mode RX callback to indicate the type of parameter in the buffer.

Variants

WIFI_PKT_MGMT

< Management frame, indicates 'buf' argument is wifi_promiscuous_pkt_t

WIFI_PKT_CTRL

< Control frame, indicates 'buf' argument is wifi_promiscuous_pkt_t

WIFI_PKT_DATA

< Data frame, indiciates 'buf' argument is wifi_promiscuous_pkt_t

WIFI_PKT_MISC

< Other type, such as MIMO etc. 'buf' argument is wifi_promiscuous_pkt_t but the payload is zero length.

Trait Implementations

impl Clone for wifi_promiscuous_pkt_type_t[src]

impl Copy for wifi_promiscuous_pkt_type_t[src]

impl Debug for wifi_promiscuous_pkt_type_t[src]

impl Eq for wifi_promiscuous_pkt_type_t[src]

impl Hash for wifi_promiscuous_pkt_type_t[src]

impl PartialEq<wifi_promiscuous_pkt_type_t> for wifi_promiscuous_pkt_type_t[src]

impl StructuralEq for wifi_promiscuous_pkt_type_t[src]

impl StructuralPartialEq for wifi_promiscuous_pkt_type_t[src]

Auto Trait Implementations

impl Send for wifi_promiscuous_pkt_type_t

impl Sync for wifi_promiscuous_pkt_type_t

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