pub type opj_stream_write_fn = Option<unsafe extern "C" fn(p_buffer: *mut c_void, p_nb_bytes: OPJ_SIZE_T, p_user_data: *mut c_void) -> OPJ_SIZE_T>;

Aliased Type§

enum opj_stream_write_fn {
    None,
    Some(unsafe extern "C" fn(_: *mut c_void, _: usize, _: *mut c_void) -> usize),
}

Variants§

§1.0.0

None

No value.

§1.0.0

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

Some value of type T.