esp_idf_hal::sys

Type Alias mesh_event_child_connected_t

Source
pub type mesh_event_child_connected_t = wifi_event_ap_staconnected_t;
Expand description

@brief Child connected information

Aliased Type§

struct mesh_event_child_connected_t {
    pub mac: [u8; 6],
    pub aid: u8,
    pub is_mesh_child: bool,
}

Fields§

§mac: [u8; 6]

< MAC address of the station connected to Soft-AP

§aid: u8

< AID assigned by the Soft-AP to the connected station

§is_mesh_child: bool

< Flag indicating whether the connected station is a mesh child

Trait Implementations

Source§

impl Clone for wifi_event_ap_staconnected_t

Source§

fn clone(&self) -> wifi_event_ap_staconnected_t

Returns a copy of the value. Read more
1.0.0§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for wifi_event_ap_staconnected_t

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl Default for wifi_event_ap_staconnected_t

Source§

fn default() -> wifi_event_ap_staconnected_t

Returns the “default value” for a type. Read more
Source§

impl Copy for wifi_event_ap_staconnected_t