pub type otBackboneRouterMulticastListenerCallback = Option<unsafe extern "C" fn(aContext: *mut c_void, aEvent: otBackboneRouterMulticastListenerEvent, aAddress: *const otIp6Address)>;
Expand description

Pointer is called whenever the Multicast Listeners change.

@param[in] aContext The user context pointer. @param[in] aEvent The Multicast Listener event. @param[in] aAddress The IPv6 multicast address of the Multicast Listener.

Aliased Type§

enum otBackboneRouterMulticastListenerCallback {
    None,
    Some(unsafe extern "C" fn(_: *mut c_void, _: u32, _: *const otIp6Address)),
}

Variants§

§1.0.0

None

No value.

§1.0.0

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

Some value of type T.