Type Definition mupdf_sys::fz_stream_drop_fn[][src]

type fz_stream_drop_fn = Option<unsafe extern "C" fn(ctx: *mut fz_context, state: *mut c_void)>;

A function type for use when implementing fz_streams. The supplied function of this type is called when the stream is dropped, to release the stream specific state information.

state: The stream state to release.