[][src]Struct esp_idf_bindgen::wifi_csi_info_t

#[repr(C)]pub struct wifi_csi_info_t {
    pub rx_ctrl: wifi_pkt_rx_ctrl_t,
    pub mac: [u8; 6],
    pub first_word_invalid: bool,
    pub buf: *mut i8,
    pub len: u16,
}

@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

first_word_invalid: bool

< first four bytes of the CSI data is invalid or not

buf: *mut i8

< buffer of CSI data

len: u16

< length of CSI data

Trait Implementations

impl Clone for wifi_csi_info_t[src]

impl Copy for wifi_csi_info_t[src]

impl Debug for wifi_csi_info_t[src]

Auto Trait Implementations

impl !Send for wifi_csi_info_t

impl !Sync for wifi_csi_info_t

impl Unpin for wifi_csi_info_t

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.