[][src]Struct esp_idf_bindgen::wifi_pkt_rx_ctrl_t

#[repr(C)]#[repr(align(4))]pub struct wifi_pkt_rx_ctrl_t {
    pub _bitfield_1: __BindgenBitfieldUnit<[u8; 28], u32>,
}

@brief Received packet radio metadata header, this is the common header at the beginning of all promiscuous mode RX callback buffers

Fields

_bitfield_1: __BindgenBitfieldUnit<[u8; 28], u32>

Implementations

impl wifi_pkt_rx_ctrl_t[src]

pub fn rssi(&self) -> c_int[src]

pub fn set_rssi(&mut self, val: c_int)[src]

pub fn rate(&self) -> c_uint[src]

pub fn set_rate(&mut self, val: c_uint)[src]

pub fn sig_mode(&self) -> c_uint[src]

pub fn set_sig_mode(&mut self, val: c_uint)[src]

pub fn mcs(&self) -> c_uint[src]

pub fn set_mcs(&mut self, val: c_uint)[src]

pub fn cwb(&self) -> c_uint[src]

pub fn set_cwb(&mut self, val: c_uint)[src]

pub fn smoothing(&self) -> c_uint[src]

pub fn set_smoothing(&mut self, val: c_uint)[src]

pub fn not_sounding(&self) -> c_uint[src]

pub fn set_not_sounding(&mut self, val: c_uint)[src]

pub fn aggregation(&self) -> c_uint[src]

pub fn set_aggregation(&mut self, val: c_uint)[src]

pub fn stbc(&self) -> c_uint[src]

pub fn set_stbc(&mut self, val: c_uint)[src]

pub fn fec_coding(&self) -> c_uint[src]

pub fn set_fec_coding(&mut self, val: c_uint)[src]

pub fn sgi(&self) -> c_uint[src]

pub fn set_sgi(&mut self, val: c_uint)[src]

pub fn noise_floor(&self) -> c_int[src]

pub fn set_noise_floor(&mut self, val: c_int)[src]

pub fn ampdu_cnt(&self) -> c_uint[src]

pub fn set_ampdu_cnt(&mut self, val: c_uint)[src]

pub fn channel(&self) -> c_uint[src]

pub fn set_channel(&mut self, val: c_uint)[src]

pub fn secondary_channel(&self) -> c_uint[src]

pub fn set_secondary_channel(&mut self, val: c_uint)[src]

pub fn timestamp(&self) -> c_uint[src]

pub fn set_timestamp(&mut self, val: c_uint)[src]

pub fn ant(&self) -> c_uint[src]

pub fn set_ant(&mut self, val: c_uint)[src]

pub fn sig_len(&self) -> c_uint[src]

pub fn set_sig_len(&mut self, val: c_uint)[src]

pub fn rx_state(&self) -> c_uint[src]

pub fn set_rx_state(&mut self, val: c_uint)[src]

pub fn new_bitfield_1(
    rssi: c_int,
    rate: c_uint,
    sig_mode: c_uint,
    mcs: c_uint,
    cwb: c_uint,
    smoothing: c_uint,
    not_sounding: c_uint,
    aggregation: c_uint,
    stbc: c_uint,
    fec_coding: c_uint,
    sgi: c_uint,
    noise_floor: c_int,
    ampdu_cnt: c_uint,
    channel: c_uint,
    secondary_channel: c_uint,
    timestamp: c_uint,
    ant: c_uint,
    sig_len: c_uint,
    rx_state: c_uint
) -> __BindgenBitfieldUnit<[u8; 28], u32>
[src]

Trait Implementations

impl Clone for wifi_pkt_rx_ctrl_t[src]

impl Copy for wifi_pkt_rx_ctrl_t[src]

impl Debug for wifi_pkt_rx_ctrl_t[src]

Auto Trait Implementations

impl Send for wifi_pkt_rx_ctrl_t

impl Sync for wifi_pkt_rx_ctrl_t

impl Unpin for wifi_pkt_rx_ctrl_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.