pub type FuriEventLoopEventCallback = Option<unsafe extern "C" fn(object: *mut FuriEventLoopObject, context: *mut c_void)>;Expand description
Callback type for event loop events
§Arguments
object- The object that triggered the eventcontext- The context that was provided upon subscription
Aliased Type§
pub enum FuriEventLoopEventCallback {
None,
Some(unsafe extern "C" fn(*mut c_void, *mut c_void)),
}