[][src]Struct nl80211::Bss

pub struct Bss {
    pub bssid: Option<Vec<u8>>,
    pub frequency: Option<Vec<u8>>,
    pub beacon_interval: Option<Vec<u8>>,
    pub seen_ms_ago: Option<Vec<u8>>,
    pub status: Option<Vec<u8>>,
    pub signal: Option<Vec<u8>>,
}

A struct representing a BSS (Basic Service Set)

Fields

bssid: Option<Vec<u8>>frequency: Option<Vec<u8>>

Frequency in MHz (u32)

beacon_interval: Option<Vec<u8>>

Beacon interval of the (I)BSS (u16)

seen_ms_ago: Option<Vec<u8>>

Age of this BSS entry in ms (u32)

status: Option<Vec<u8>>

Status, if this BSS is "used" (u8)

signal: Option<Vec<u8>>

Signal strength of probe response/beacon in mBm (100 * dBm) (i32)

Methods

impl Bss[src]

pub fn default() -> Bss[src]

Trait Implementations

impl PrettyFormat for Bss[src]

impl ParseNlAttr for Bss[src]

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

Parse netlink messages returned by the nl80211 command CmdGetScan

impl Clone for Bss[src]

impl PartialEq<Bss> for Bss[src]

impl Debug for Bss[src]

Auto Trait Implementations

impl Send for Bss

impl Unpin for Bss

impl Sync for Bss

impl UnwindSafe for Bss

impl RefUnwindSafe for Bss

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]