pub type async_wait_handler_t = Option<unsafe extern "C" fn(dispatcher: *mut async_dispatcher_t, wait: *mut async_wait_t, status: zx_status_t, signal: *const zx_packet_signal_t)>;
Aliased Type§
enum async_wait_handler_t {
None,
Some(unsafe extern "C" fn(_: *mut async_dispatcher, _: *mut async_wait, _: i32, _: *const zx_packet_signal_t)),
}
Variants§
None
No value.
Some(unsafe extern "C" fn(_: *mut async_dispatcher, _: *mut async_wait, _: i32, _: *const zx_packet_signal_t))
Some value of type T
.