#[repr(C)]
pub struct jpeg_destination_mgr { pub next_output_byte: *mut u8, pub free_in_buffer: usize, pub init_destination: Option<unsafe extern "C" fn(cinfo: &mut jpeg_compress_struct)>, pub empty_output_buffer: Option<unsafe extern "C" fn(cinfo: &mut jpeg_compress_struct) -> boolean>, pub term_destination: Option<unsafe extern "C" fn(cinfo: &mut jpeg_compress_struct)>, }

Fields

next_output_byte: *mut u8free_in_buffer: usizeinit_destination: Option<unsafe extern "C" fn(cinfo: &mut jpeg_compress_struct)>empty_output_buffer: Option<unsafe extern "C" fn(cinfo: &mut jpeg_compress_struct) -> boolean>term_destination: Option<unsafe extern "C" fn(cinfo: &mut jpeg_compress_struct)>

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.