esp_idf_sys

Type Alias esp_netif_config_t

Source
pub type esp_netif_config_t = esp_netif_config;
Expand description

@brief Generic esp_netif configuration

Aliased Type§

struct esp_netif_config_t {
    pub base: *const esp_netif_inherent_config,
    pub driver: *const esp_netif_driver_ifconfig,
    pub stack: *const esp_netif_netstack_config,
}

Fields§

§base: *const esp_netif_inherent_config

< base config

§driver: *const esp_netif_driver_ifconfig

< driver config

§stack: *const esp_netif_netstack_config

< stack config

Trait Implementations

Source§

impl Clone for esp_netif_config

Source§

fn clone(&self) -> esp_netif_config

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 esp_netif_config

Source§

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

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

impl Default for esp_netif_config

Source§

fn default() -> Self

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

impl Copy for esp_netif_config