#[non_exhaustive]pub struct ConnectedStationInfo {
pub ssid: Ssid,
pub bssid: [u8; 6],
pub channel: u8,
pub authmode: AuthenticationMethod,
pub aid: u16,
}Available on crate feature
wifi only.Expand description
Information about a connected station.
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.ssid: SsidThe SSID of the connected station.
bssid: [u8; 6]The BSSID of the connected station.
channel: u8The channel of the connected station.
authmode: AuthenticationMethodThe authmode of the connected station.
aid: u16The Association ID (AID) of the connected station.
Trait Implementations§
Source§impl Clone for ConnectedStationInfo
impl Clone for ConnectedStationInfo
Source§fn clone(&self) -> ConnectedStationInfo
fn clone(&self) -> ConnectedStationInfo
Returns a duplicate 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 ConnectedStationInfo
impl Debug for ConnectedStationInfo
Source§impl Format for ConnectedStationInfo
impl Format for ConnectedStationInfo
Source§impl Hash for ConnectedStationInfo
impl Hash for ConnectedStationInfo
Source§impl PartialEq for ConnectedStationInfo
impl PartialEq for ConnectedStationInfo
impl Eq for ConnectedStationInfo
impl StructuralPartialEq for ConnectedStationInfo
Auto Trait Implementations§
impl Freeze for ConnectedStationInfo
impl RefUnwindSafe for ConnectedStationInfo
impl Send for ConnectedStationInfo
impl Sync for ConnectedStationInfo
impl Unpin for ConnectedStationInfo
impl UnwindSafe for ConnectedStationInfo
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, dest: *mut u8)
unsafe fn clone_to_uninit(&self, dest: *mut u8)
🔬This is a nightly-only experimental API. (
clone_to_uninit)