#[repr(C)]pub struct Jpeg2000ResLevel {
pub nbands: u8,
pub coord: [[c_int; 2]; 2],
pub num_precincts_x: c_int,
pub num_precincts_y: c_int,
pub log2_prec_width: u8,
pub log2_prec_height: u8,
pub band: *mut Jpeg2000Band,
}
Fields§
§nbands: u8
§coord: [[c_int; 2]; 2]
§num_precincts_x: c_int
§num_precincts_y: c_int
§log2_prec_width: u8
§log2_prec_height: u8
§band: *mut Jpeg2000Band
Trait Implementations§
Source§impl Clone for Jpeg2000ResLevel
impl Clone for Jpeg2000ResLevel
Source§fn clone(&self) -> Jpeg2000ResLevel
fn clone(&self) -> Jpeg2000ResLevel
Returns a copy 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 Jpeg2000ResLevel
impl Debug for Jpeg2000ResLevel
impl Copy for Jpeg2000ResLevel
Auto Trait Implementations§
impl Freeze for Jpeg2000ResLevel
impl RefUnwindSafe for Jpeg2000ResLevel
impl !Send for Jpeg2000ResLevel
impl !Sync for Jpeg2000ResLevel
impl Unpin for Jpeg2000ResLevel
impl UnwindSafe for Jpeg2000ResLevel
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