pub type otCommissionerPanIdConflictCallback = Option<unsafe extern "C" fn(aPanId: u16, aChannelMask: u32, aContext: *mut c_void)>;
Expand description

Pointer is called when the Commissioner receives a PAN ID Conflict message.

@param[in] aPanId The PAN ID value. @param[in] aChannelMask The channel mask value. @param[in] aContext A pointer to application-specific context.

Aliased Type§

enum otCommissionerPanIdConflictCallback {
    None,
    Some(unsafe extern "C" fn(_: u16, _: u32, _: *mut c_void)),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn(_: u16, _: u32, _: *mut c_void))

Some value of type T.