pub struct ScanResult {
pub index: u8,
pub rssi: i8,
pub auth: AuthType,
pub channel: u8,
pub bssid: [u8; 6],
pub ssid: Ssid,
}
Expand description
Result of a scan for access points
Fields§
§index: u8
§rssi: i8
§auth: AuthType
§channel: u8
§bssid: [u8; 6]
§ssid: Ssid
SSID of the access point
Trait Implementations§
Source§impl Debug for ScanResult
impl Debug for ScanResult
Source§impl Default for ScanResult
impl Default for ScanResult
Source§fn default() -> ScanResult
fn default() -> ScanResult
Returns the “default value” for a type. Read more
Source§impl Display for ScanResult
impl Display for ScanResult
Source§impl PartialEq for ScanResult
impl PartialEq for ScanResult
impl StructuralPartialEq for ScanResult
Auto Trait Implementations§
impl Freeze for ScanResult
impl RefUnwindSafe for ScanResult
impl Send for ScanResult
impl Sync for ScanResult
impl Unpin for ScanResult
impl UnwindSafe for ScanResult
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