pub struct PromiscuousPkt<'a> {
pub rx_cntl: RxControlInfo,
pub frame_type: wifi_promiscuous_pkt_type_t,
pub len: usize,
pub data: &'a [u8],
}Available on crate feature
unstable only.Expand description
Represents a Wi-Fi packet in promiscuous mode.
§Stability
This API is marked as unstable and is only available when the unstable
crate feature is enabled. This comes with no stability guarantees, and could be changed
or removed at any time.
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.