Type Alias uv_work_t

Source
pub type uv_work_t = uv_work_s;

Aliased Type§

struct uv_work_t {
    pub data: *mut c_void,
    pub type_: u32,
    pub active_queue: [*mut c_void; 2],
    pub reserved: [*mut c_void; 4],
    pub loop_: *mut uv_loop_s,
    pub work_cb: Option<unsafe extern "C" fn(_: *mut uv_work_s)>,
    pub after_work_cb: Option<unsafe extern "C" fn(_: *mut uv_work_s, _: i32)>,
    pub work_req: uv__work,
}

Fields§

§data: *mut c_void§type_: u32§active_queue: [*mut c_void; 2]§reserved: [*mut c_void; 4]§loop_: *mut uv_loop_s§work_cb: Option<unsafe extern "C" fn(_: *mut uv_work_s)>§after_work_cb: Option<unsafe extern "C" fn(_: *mut uv_work_s, _: i32)>§work_req: uv__work