pub struct PromiscuousPkt<'a> {
    pub rx_cntl: RxControlInfo,
    pub frame_type: wifi_promiscuous_pkt_type_t,
    pub len: usize,
    pub data: &'a [u8],
}Expand description
Represents a Wi-Fi packet in promiscuous mode.
Fields§
§rx_cntl: RxControlInfoControl information related to packet reception.
frame_type: wifi_promiscuous_pkt_type_tFrame type of the received packet.
len: usizeLength of the received packet.
data: &'a [u8]Data contained in the received packet.