pub type otStateChangedCallback = Option<unsafe extern "C" fn(_: u32, _: *mut c_void)>;Expand description
Pointer is called to notify certain configuration or state changes within OpenThread.
@param[in]  aFlags    A bit-field indicating specific state that has changed.  See OT_CHANGED_* definitions.
@param[in]  aContext  A pointer to application-specific context.
Aliased Type§
enum otStateChangedCallback {
    None,
    Some(unsafe extern "C" fn(_: u32, _: *mut c_void)),
}