#[non_exhaustive]#[repr(C, packed(2))]pub struct BssInfo {
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],
}
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.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BssInfo
impl RefUnwindSafe for BssInfo
impl Send for BssInfo
impl Sync for BssInfo
impl Unpin for BssInfo
impl UnwindSafe for BssInfo
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more