pub type fdf_channel_read_handler_t = Option<unsafe extern "C" fn(dispatcher: *mut fdf_dispatcher_t, read: *mut fdf_channel_read_t, status: zx_status_t)>;
Aliased Type§
enum fdf_channel_read_handler_t {
None,
Some(unsafe extern "C" fn(_: *mut fdf_dispatcher, _: *mut fdf_channel_read, _: i32)),
}
Variants§
None
No value.
Some(unsafe extern "C" fn(_: *mut fdf_dispatcher, _: *mut fdf_channel_read, _: i32))
Some value of type T
.