[][src]Struct nl80211::Station

pub struct Station {
    pub average_signal: Option<Vec<u8>>,
    pub beacon_loss: Option<Vec<u8>>,
    pub bssid: Option<Vec<u8>>,
    pub connected_time: Option<Vec<u8>>,
    pub rx_bitrate: Option<Vec<u8>>,
    pub rx_packets: Option<Vec<u8>>,
    pub signal: Option<Vec<u8>>,
    pub tx_bitrate: Option<Vec<u8>>,
    pub tx_failed: Option<Vec<u8>>,
    pub tx_packets: Option<Vec<u8>>,
    pub tx_retries: Option<Vec<u8>>,
}

A struct representing a remote station (Access Point)

Fields

average_signal: Option<Vec<u8>>

Signal strength average (i8, dBm)

beacon_loss: Option<Vec<u8>>

Count of times beacon loss was detected (u32)

bssid: Option<Vec<u8>>

Station bssid (u8)

connected_time: Option<Vec<u8>>

Time since the station is last connected in seconds (u32)

rx_bitrate: Option<Vec<u8>>

Reception bitrate (u8)

rx_packets: Option<Vec<u8>>

Total received packets (MSDUs and MMPDUs) from this station (u32)

signal: Option<Vec<u8>>

Signal strength of last received PPDU (u8, dBm)

tx_bitrate: Option<Vec<u8>>

Transmission bitrate (u8)

tx_failed: Option<Vec<u8>>

Total failed packets (MPDUs) to this station (u32)

tx_packets: Option<Vec<u8>>

Total transmitted packets (MSDUs and MMPDUs) to this station (u32)

tx_retries: Option<Vec<u8>>

Total retries (MPDUs) to this station (u32)

Methods

impl Station[src]

pub fn default() -> Station[src]

Trait Implementations

impl PrettyFormat for Station[src]

impl ParseNlAttr for Station[src]

fn parse(&mut self, handle: AttrHandle<Nl80211Attr>) -> Station[src]

Parse netlink messages returned by the nl80211 command CmdGetStation

impl Clone for Station[src]

impl PartialEq<Station> for Station[src]

impl Debug for Station[src]

Auto Trait Implementations

impl Send for Station

impl Unpin for Station

impl Sync for Station

impl UnwindSafe for Station

impl RefUnwindSafe for Station

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

impl<T> From<T> for 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.

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

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

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