Struct esp_wifi::wifi::AccessPointInfo
source · pub struct AccessPointInfo {
pub ssid: String<32>,
pub bssid: [u8; 6],
pub channel: u8,
pub secondary_channel: SecondaryChannel,
pub signal_strength: i8,
pub protocols: EnumSet<Protocol>,
pub auth_method: Option<AuthMethod>,
}
Expand description
Information about a detected Wi-Fi access point.
Fields§
§ssid: String<32>
The SSID of the access point.
bssid: [u8; 6]
The BSSID (MAC address) of the access point.
channel: u8
The channel the access point is operating on.
secondary_channel: SecondaryChannel
The secondary channel configuration of the access point.
signal_strength: i8
The signal strength of the access point (RSSI).
protocols: EnumSet<Protocol>
The set of protocols supported by the access point.
auth_method: Option<AuthMethod>
The authentication method used by the access point.
Trait Implementations§
source§impl Clone for AccessPointInfo
impl Clone for AccessPointInfo
source§fn clone(&self) -> AccessPointInfo
fn clone(&self) -> AccessPointInfo
Returns a copy of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for AccessPointInfo
impl Debug for AccessPointInfo
source§impl Default for AccessPointInfo
impl Default for AccessPointInfo
source§fn default() -> AccessPointInfo
fn default() -> AccessPointInfo
Returns the “default value” for a type. Read more
source§impl PartialEq for AccessPointInfo
impl PartialEq for AccessPointInfo
impl Eq for AccessPointInfo
impl StructuralPartialEq for AccessPointInfo
Auto Trait Implementations§
impl Freeze for AccessPointInfo
impl RefUnwindSafe for AccessPointInfo
impl Send for AccessPointInfo
impl Sync for AccessPointInfo
impl Unpin for AccessPointInfo
impl UnwindSafe for AccessPointInfo
Blanket Implementations§
§impl<T> Any for Twhere
T: 'static + ?Sized,
impl<T> Any for Twhere
T: 'static + ?Sized,
§impl<T> Borrow<T> for Twhere
T: ?Sized,
impl<T> Borrow<T> for Twhere
T: ?Sized,
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)