[][src]Struct carrier::proto::WifiStation

pub struct WifiStation {
    pub address: String,
    pub inactive: u64,
    pub rx_bytes: u64,
    pub rx_packets: u64,
    pub tx_bytes: u64,
    pub tx_packets: u64,
    pub tx_retries: u64,
    pub tx_failed: u64,
    pub beacon_loss: u64,
    pub beacon_rx: u64,
    pub rx_drop_misc: u64,
    pub signal: Vec<i32>,
    pub signal_avg: Vec<i32>,
    pub beacon_signal_avg: u64,
    pub tx_bitrate: f64,
    pub rx_bitrate: f64,
    pub rx_duration: u64,
    pub expected: f64,
    pub authorized: bool,
    pub authenticated: bool,
    pub associated: bool,
    pub preamble: String,
    pub wmm: bool,
    pub mfp: bool,
    pub tdls: bool,
    pub dtim: u32,
    pub beacon_interval: u64,
    pub short_preamble: bool,
    pub short_slot_time: bool,
    pub connected_time: u64,
}

Fields

address: Stringinactive: u64rx_bytes: u64rx_packets: u64tx_bytes: u64tx_packets: u64tx_retries: u64tx_failed: u64beacon_loss: u64beacon_rx: u64rx_drop_misc: u64signal: Vec<i32>signal_avg: Vec<i32>beacon_signal_avg: u64tx_bitrate: f64rx_bitrate: f64rx_duration: u64expected: f64authorized: boolauthenticated: boolassociated: boolpreamble: Stringwmm: boolmfp: booltdls: booldtim: u32beacon_interval: u64short_preamble: boolshort_slot_time: boolconnected_time: u64

Trait Implementations

impl Clone for WifiStation[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq<WifiStation> for WifiStation[src]

impl Default for WifiStation[src]

impl Debug for WifiStation[src]

impl Message for WifiStation[src]

fn encode<B>(&self, buf: &mut B) -> Result<(), EncodeError> where
    B: BufMut
[src]

Encodes the message to a buffer. Read more

fn encode_length_delimited<B>(&self, buf: &mut B) -> Result<(), EncodeError> where
    B: BufMut
[src]

Encodes the message with a length-delimiter to a buffer. Read more

fn decode<B>(buf: B) -> Result<Self, DecodeError> where
    B: IntoBuf,
    Self: Default
[src]

Decodes an instance of the message from a buffer. Read more

fn decode_length_delimited<B>(buf: B) -> Result<Self, DecodeError> where
    B: IntoBuf,
    Self: Default
[src]

Decodes a length-delimited instance of the message from the buffer.

fn merge<B>(&mut self, buf: B) -> Result<(), DecodeError> where
    B: IntoBuf
[src]

Decodes an instance of the message from a buffer, and merges it into self. Read more

fn merge_length_delimited<B>(&mut self, buf: B) -> Result<(), DecodeError> where
    B: IntoBuf
[src]

Decodes a length-delimited instance of the message from buffer, and merges it into self. Read more

Auto Trait Implementations

impl Send for WifiStation

impl Sync for WifiStation

Blanket Implementations

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

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

type Owned = T

impl<T> From for T[src]

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

impl<T> Clear for T where
    T: InitializableFromZeroed + ?Sized
[src]

impl<T> InitializableFromZeroed for T where
    T: Default
[src]

impl<T> Same for T

type Output = T

Should always be Self