Type Alias TCITER

Source
pub type TCITER = Option<unsafe extern "C" fn(kbuf: *const c_void, ksiz: c_int, vbuf: *const c_void, vsiz: c_int, op: *mut c_void) -> bool>;

Aliased Type§

enum TCITER {
    None,
    Some(unsafe extern "C" fn(_: *const c_void, _: i32, _: *const c_void, _: i32, _: *mut c_void) -> bool),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn(_: *const c_void, _: i32, _: *const c_void, _: i32, _: *mut c_void) -> bool)

Some value of type T.