pub type otCommissionerStateCallback = Option<unsafe extern "C" fn(aState: otCommissionerState, aContext: *mut c_void)>;Expand description
This function pointer is called whenever the commissioner state changes.
@param[in] aChannelMask The channel mask value. @param[in] aEnergyList A pointer to the energy measurement list. @param[in] aEnergyListLength Number of entries in @p aEnergyListLength. @param[in] aContext A pointer to application-specific context.
Aliased Type§
enum otCommissionerStateCallback {
None,
Some(unsafe extern "C" fn(_: u32, _: *mut c_void)),
}