Struct mozjpeg_sys::jpeg_source_mgr [] [src]

#[repr(C)]
pub struct jpeg_source_mgr { pub next_input_byte: *const u8, pub bytes_in_buffer: usize, pub init_source: Option<extern "C" fn(_: &mut jpeg_decompress_struct)>, pub fill_input_buffer: Option<extern "C" fn(_: &mut jpeg_decompress_struct) -> boolean>, pub skip_input_data: Option<extern "C" fn(_: &mut jpeg_decompress_struct, _: c_long)>, pub resync_to_restart: Option<extern "C" fn(_: &mut jpeg_decompress_struct, _: c_int) -> boolean>, pub term_source: Option<extern "C" fn(_: &mut jpeg_decompress_struct)>, }

Fields