#[repr(C)]pub struct jpeg_progress_mgr {
pub progress_monitor: Option<unsafe extern "C-unwind" fn(cinfo: &mut jpeg_common_struct)>,
pub pass_counter: c_long,
pub pass_limit: c_long,
pub completed_passes: c_int,
pub total_passes: c_int,
}Fields§
§progress_monitor: Option<unsafe extern "C-unwind" fn(cinfo: &mut jpeg_common_struct)>§pass_counter: c_long§pass_limit: c_long§completed_passes: c_int§total_passes: c_intAuto Trait Implementations§
impl Freeze for jpeg_progress_mgr
impl RefUnwindSafe for jpeg_progress_mgr
impl Send for jpeg_progress_mgr
impl Sync for jpeg_progress_mgr
impl Unpin for jpeg_progress_mgr
impl UnwindSafe for jpeg_progress_mgr
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more