Struct esp_wifi_sys::include::wifi_action_tx_req_t
source · #[repr(C)]pub struct wifi_action_tx_req_t {
pub ifx: wifi_interface_t,
pub dest_mac: [u8; 6],
pub no_ack: bool,
pub rx_cb: wifi_action_rx_cb_t,
pub data_len: u32,
pub data: __IncompleteArrayField<u8>,
}
Expand description
@brief Action Frame Tx Request
Fields§
§ifx: wifi_interface_t
< WiFi interface to send request to
dest_mac: [u8; 6]
< Destination MAC address
no_ack: bool
< Indicates no ack required
rx_cb: wifi_action_rx_cb_t
< Rx Callback to receive any response
data_len: u32
< Length of the appended Data
data: __IncompleteArrayField<u8>
< Appended Data payload
Auto Trait Implementations§
impl Freeze for wifi_action_tx_req_t
impl RefUnwindSafe for wifi_action_tx_req_t
impl Send for wifi_action_tx_req_t
impl Sync for wifi_action_tx_req_t
impl Unpin for wifi_action_tx_req_t
impl UnwindSafe for wifi_action_tx_req_t
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more