Struct esp_idf_sys::vendor_ie_data_t
source · #[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>,
}
Expand description
@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§
source§impl Debug for vendor_ie_data_t
impl Debug for vendor_ie_data_t
source§impl Default for vendor_ie_data_t
impl Default for vendor_ie_data_t
source§fn default() -> vendor_ie_data_t
fn default() -> vendor_ie_data_t
Returns the “default value” for a type. Read more