Struct esp_idf_sys::wifi_sta_list_t
source · [−]#[repr(C)]pub struct wifi_sta_list_t {
pub sta: [wifi_sta_info_t; 10],
pub num: c_int,
}
Expand description
@brief List of stations associated with the ESP32 Soft-AP
Fields
sta: [wifi_sta_info_t; 10]
< station list
num: c_int
< number of stations in the list (other entries are invalid)
Trait Implementations
sourceimpl Clone for wifi_sta_list_t
impl Clone for wifi_sta_list_t
sourcefn clone(&self) -> wifi_sta_list_t
fn clone(&self) -> wifi_sta_list_t
Returns a copy of the value. Read more
1.0.0fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for wifi_sta_list_t
impl Debug for wifi_sta_list_t
sourceimpl Default for wifi_sta_list_t
impl Default for wifi_sta_list_t
sourcefn default() -> wifi_sta_list_t
fn default() -> wifi_sta_list_t
Returns the “default value” for a type. Read more
impl Copy for wifi_sta_list_t
Auto Trait Implementations
impl RefUnwindSafe for wifi_sta_list_t
impl Send for wifi_sta_list_t
impl Sync for wifi_sta_list_t
impl Unpin for wifi_sta_list_t
impl UnwindSafe for wifi_sta_list_t
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstablefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
fn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
Uses borrowed data to replace owned data, usually by cloning. Read more