esp_idf_sys

Type Alias netif_ext_callback_t

Source
pub type netif_ext_callback_t = netif_ext_callback;

Aliased Type§

struct netif_ext_callback_t {
    pub callback_fn: Option<unsafe extern "C" fn(_: *mut netif, _: u16, _: *const netif_ext_callback_args_t)>,
    pub next: *mut netif_ext_callback,
}

Fields§

§callback_fn: Option<unsafe extern "C" fn(_: *mut netif, _: u16, _: *const netif_ext_callback_args_t)>§next: *mut netif_ext_callback

Trait Implementations

Source§

impl Clone for netif_ext_callback

Source§

fn clone(&self) -> netif_ext_callback

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 netif_ext_callback

Source§

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

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

impl Default for netif_ext_callback

Source§

fn default() -> Self

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

impl Copy for netif_ext_callback