pub type netif_status_callback_fn = Option<unsafe extern "C" fn(netif: *mut netif)>;
Expand description

Function prototype for netif status- or link-callback functions.

Aliased Type§

enum netif_status_callback_fn {
    None,
    Some(unsafe extern "C" fn(_: *mut netif)),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn(_: *mut netif))

Some value of type T.