[][src]Struct seeed_erpc::rpcs::ScanResult

#[repr(packed)]pub struct ScanResult {
    pub ssid: SSID,
    pub bssid: BSSID,
    pub rssi: i16,
    pub bss_type: BssType,
    pub security: Security,
    pub wps: WPS,
    pub chan: u32,
    pub band: Band,
}

Describes a wifi network or station discovered via scanning.

Fields

ssid: SSID

Service Set Identification (i.e. Name of Access Point)

bssid: BSSID

Basic Service Set Identification (i.e. MAC address of Access Point)

rssi: i16

Receive Signal Strength Indication in dBm. <-90=poor, >-30=Excellent

bss_type: BssType

Network type

security: Security

Security type

wps: WPS

WPS type

chan: u32

Channel

band: Band

Radio channel that the AP beacon was received on

Trait Implementations

impl Clone for ScanResult[src]

impl Copy for ScanResult[src]

impl Debug for ScanResult[src]

impl Default for ScanResult[src]

Auto Trait Implementations

impl Send for ScanResult

impl Sync for ScanResult

impl Unpin for ScanResult

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> Same<T> for T

type Output = T

Should always be Self

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.