pub type otCommissionerJoinerCallback = Option<unsafe extern "C" fn(aEvent: otCommissionerJoinerEvent, aJoinerId: *const otExtAddress, aContext: *mut c_void)>;Expand description
This function pointer is called whenever the joiner state changes.
@param[in] aEvent The joiner event type. @param[in] aJoinerId A pointer to the Joiner ID. @param[in] aContext A pointer to application-specific context.
Aliased Type§
enum otCommissionerJoinerCallback {
None,
Some(unsafe extern "C" fn(_: u32, _: *const otExtAddress, _: *mut c_void)),
}