Struct esp_wifi_sys::include::wifi_csi_info_t
source · #[repr(C)]pub struct wifi_csi_info_t {
pub rx_ctrl: wifi_pkt_rx_ctrl_t,
pub mac: [u8; 6],
pub dmac: [u8; 6],
pub first_word_invalid: bool,
pub buf: *mut i8,
pub len: u16,
pub hdr: *mut u8,
pub payload: *mut u8,
pub payload_len: u16,
}
Expand description
@brief CSI data type
Fields§
§rx_ctrl: wifi_pkt_rx_ctrl_t
< received packet radio metadata header of the CSI data
mac: [u8; 6]
< source MAC address of the CSI data
dmac: [u8; 6]
< destination MAC address of the CSI data
first_word_invalid: bool
< first four bytes of the CSI data is invalid or not, true indicates the first four bytes is invalid due to hardware limition
buf: *mut i8
< valid buffer of CSI data
len: u16
< valid length of CSI data
hdr: *mut u8
< header of the wifi packet
payload: *mut u8
< payload of the wifi packet
payload_len: u16
< payload len of the wifi packet
Trait Implementations§
source§impl Clone for wifi_csi_info_t
impl Clone for wifi_csi_info_t
source§fn clone(&self) -> wifi_csi_info_t
fn clone(&self) -> wifi_csi_info_t
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreimpl Copy for wifi_csi_info_t
Auto Trait Implementations§
impl Freeze for wifi_csi_info_t
impl RefUnwindSafe for wifi_csi_info_t
impl !Send for wifi_csi_info_t
impl !Sync for wifi_csi_info_t
impl Unpin for wifi_csi_info_t
impl UnwindSafe for wifi_csi_info_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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)