[][src]Struct esp_idf_bindgen::vendor_ie_data_t

#[repr(C)]pub struct vendor_ie_data_t {
    pub element_id: u8,
    pub length: u8,
    pub vendor_oui: [u8; 3],
    pub vendor_oui_type: u8,
    pub payload: __IncompleteArrayField<u8>,
}

@brief Vendor Information Element header

The first bytes of the Information Element will match this header. Payload follows.

Fields

element_id: u8

< Should be set to WIFI_VENDOR_IE_ELEMENT_ID (0xDD)

length: u8

< Length of all bytes in the element data following this field. Minimum 4.

vendor_oui: [u8; 3]

< Vendor identifier (OUI).

vendor_oui_type: u8

< Vendor-specific OUI type.

payload: __IncompleteArrayField<u8>

< Payload. Length is equal to value in 'length' field, minus 4.

Trait Implementations

impl Debug for vendor_ie_data_t[src]

Auto Trait Implementations

impl Send for vendor_ie_data_t

impl Sync for vendor_ie_data_t

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