Embassy
cyw43

Crates

git

Versions

default

Flavors

Struct cyw43::BssInfo

source ·
#[non_exhaustive]
#[repr(C, packed(2))]
pub struct BssInfo {
Show 23 fields pub version: u32, pub length: u32, pub bssid: [u8; 6], pub beacon_period: u16, pub capability: u16, pub ssid_len: u8, pub ssid: [u8; 32], pub rateset_count: u32, pub rates: [u8; 16], pub chanspec: u16, pub atim_window: u16, pub dtim_period: u8, pub rssi: i16, pub phy_noise: i8, pub n_cap: u8, pub nbss_cap: u32, pub ctl_ch: u8, pub flags: u8, pub vht_cap: u8, pub basic_mcs: [u8; 16], pub ie_offset: u16, pub ie_length: u32, pub snr: i16, /* private fields */
}
Expand description

Wifi Scan Result

Fields (Non-exhaustive)§

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
§version: u32

Version.

§length: u32

Length.

§bssid: [u8; 6]

BSSID.

§beacon_period: u16

Beacon period.

§capability: u16

Capability.

§ssid_len: u8

SSID length.

§ssid: [u8; 32]

SSID.

§rateset_count: u32

Number of rates in the rates field.

§rates: [u8; 16]

Rates in 500kpbs units.

§chanspec: u16

Channel specification.

§atim_window: u16

Announcement traffic indication message.

§dtim_period: u8

Delivery traffic indication message.

§rssi: i16

Receive signal strength (in dbM).

§phy_noise: i8

Received noise (in dbM).

§n_cap: u8

802.11n capability.

§nbss_cap: u32

802.11n BSS capabilities.

§ctl_ch: u8

802.11n control channel number.

§flags: u8

Flags.

§vht_cap: u8

VHT capability.

§basic_mcs: [u8; 16]

802.11n BSS required MCS.

§ie_offset: u16

Information Elements (IE) offset.

§ie_length: u32

Length of Information Elements (IE) in bytes.

§snr: i16

Average signal-to-noise (SNR) ratio during frame reception.

Implementations§

source§

impl BssInfo

source

pub const SIZE: usize = 124usize

Bytes consumed by this type.

source

pub fn to_bytes(&self) -> [u8; 124]

Convert to byte array.

source

pub fn from_bytes(bytes: &[u8; 124]) -> &Self

Create from byte array.

source

pub fn from_bytes_mut(bytes: &mut [u8; 124]) -> &mut Self

Create from mutable byte array.

Trait Implementations§

source§

impl Clone for BssInfo

source§

fn clone(&self) -> BssInfo

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Copy for BssInfo

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.