#[non_exhaustive]pub struct ConnectedInfo {
pub mac: [u8; 6],
pub aid: u16,
pub is_mesh_child: bool,
}Available on crate feature
wifi only.Expand description
Information about a station connected to the access point.
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.mac: [u8; 6]The MAC address.
aid: u16The Association ID (AID) of the connected station.
is_mesh_child: boolIf this is a mesh child.
Trait Implementations§
Source§impl Clone for ConnectedInfo
impl Clone for ConnectedInfo
Source§fn clone(&self) -> ConnectedInfo
fn clone(&self) -> ConnectedInfo
Returns a duplicate of the value. Read more
1.0.0 (const: unstable)§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ConnectedInfo
Source§impl Debug for ConnectedInfo
impl Debug for ConnectedInfo
impl Eq for ConnectedInfo
Source§impl Format for ConnectedInfowhere
[u8; 6]: Format,
impl Format for ConnectedInfowhere
[u8; 6]: Format,
Source§impl Hash for ConnectedInfo
impl Hash for ConnectedInfo
Source§impl PartialEq for ConnectedInfo
impl PartialEq for ConnectedInfo
impl StructuralPartialEq for ConnectedInfo
Auto Trait Implementations§
impl Freeze for ConnectedInfo
impl RefUnwindSafe for ConnectedInfo
impl Send for ConnectedInfo
impl Sync for ConnectedInfo
impl Unpin for ConnectedInfo
impl UnsafeUnpin for ConnectedInfo
impl UnwindSafe for ConnectedInfo
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)