[][src]Struct esp_idf_bindgen::wifi_sta_info_t

#[repr(C)]#[repr(align(4))]pub struct wifi_sta_info_t {
    pub mac: [u8; 6],
    pub rssi: i8,
    pub _bitfield_1: __BindgenBitfieldUnit<[u8; 4], u32>,
}

@brief Description of STA associated with AP

Fields

mac: [u8; 6]

< mac address

rssi: i8

< current average rssi of sta connected

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

Implementations

impl wifi_sta_info_t[src]

pub fn phy_11b(&self) -> u32[src]

pub fn set_phy_11b(&mut self, val: u32)[src]

pub fn phy_11g(&self) -> u32[src]

pub fn set_phy_11g(&mut self, val: u32)[src]

pub fn phy_11n(&self) -> u32[src]

pub fn set_phy_11n(&mut self, val: u32)[src]

pub fn phy_lr(&self) -> u32[src]

pub fn set_phy_lr(&mut self, val: u32)[src]

pub fn reserved(&self) -> u32[src]

pub fn set_reserved(&mut self, val: u32)[src]

pub fn new_bitfield_1(
    phy_11b: u32,
    phy_11g: u32,
    phy_11n: u32,
    phy_lr: u32,
    reserved: u32
) -> __BindgenBitfieldUnit<[u8; 4], u32>
[src]

Trait Implementations

impl Clone for wifi_sta_info_t[src]

impl Copy for wifi_sta_info_t[src]

impl Debug for wifi_sta_info_t[src]

Auto Trait Implementations

impl Send for wifi_sta_info_t

impl Sync for wifi_sta_info_t

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