#[non_exhaustive]pub struct DisconnectedStationInfo {
pub ssid: Ssid,
pub bssid: [u8; 6],
pub reason: DisconnectReason,
pub rssi: i8,
}Available on crate feature
wifi only.Expand description
Information about a disconnected 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 disconnected station.
bssid: [u8; 6]The BSSID of the disconnected station.
reason: DisconnectReasonThe disconnect reason.
rssi: i8The RSSI.
Trait Implementations§
Source§impl Clone for DisconnectedStationInfo
impl Clone for DisconnectedStationInfo
Source§fn clone(&self) -> DisconnectedStationInfo
fn clone(&self) -> DisconnectedStationInfo
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 DisconnectedStationInfo
impl Debug for DisconnectedStationInfo
Source§impl Format for DisconnectedStationInfo
impl Format for DisconnectedStationInfo
Source§impl Hash for DisconnectedStationInfo
impl Hash for DisconnectedStationInfo
Source§impl PartialEq for DisconnectedStationInfo
impl PartialEq for DisconnectedStationInfo
impl Copy for DisconnectedStationInfo
impl Eq for DisconnectedStationInfo
impl StructuralPartialEq for DisconnectedStationInfo
Auto Trait Implementations§
impl Freeze for DisconnectedStationInfo
impl RefUnwindSafe for DisconnectedStationInfo
impl Send for DisconnectedStationInfo
impl Sync for DisconnectedStationInfo
impl Unpin for DisconnectedStationInfo
impl UnwindSafe for DisconnectedStationInfo
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)