#[repr(C)]pub struct jpeg_common_struct {
pub err: *mut jpeg_error_mgr,
pub mem: *mut jpeg_memory_mgr,
pub progress: *mut jpeg_progress_mgr,
pub client_data: *mut c_void,
pub is_decompressor: boolean,
pub global_state: c_int,
}Fields§
§err: *mut jpeg_error_mgr§mem: *mut jpeg_memory_mgr§progress: *mut jpeg_progress_mgr§client_data: *mut c_void§is_decompressor: boolean§global_state: c_intTrait Implementations§
Source§impl Clone for jpeg_common_struct
impl Clone for jpeg_common_struct
Source§fn clone(&self) -> jpeg_common_struct
fn clone(&self) -> jpeg_common_struct
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for jpeg_common_struct
impl Debug for jpeg_common_struct
impl Copy for jpeg_common_struct
Auto Trait Implementations§
impl Freeze for jpeg_common_struct
impl RefUnwindSafe for jpeg_common_struct
impl !Send for jpeg_common_struct
impl !Sync for jpeg_common_struct
impl Unpin for jpeg_common_struct
impl UnwindSafe for jpeg_common_struct
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