#[repr(C)]pub struct Jpeg2000CodingStyle {
pub nreslevels: c_int,
pub nreslevels2decode: c_int,
pub log2_cblk_width: u8,
pub log2_cblk_height: u8,
pub transform: u8,
pub csty: u8,
pub nlayers: u8,
pub mct: u8,
pub cblk_style: u8,
pub prog_order: u8,
pub log2_prec_widths: [u8; 34],
pub log2_prec_heights: [u8; 34],
}
Fields§
§nreslevels: c_int
§nreslevels2decode: c_int
§log2_cblk_width: u8
§log2_cblk_height: u8
§transform: u8
§csty: u8
§nlayers: u8
§mct: u8
§cblk_style: u8
§prog_order: u8
§log2_prec_widths: [u8; 34]
§log2_prec_heights: [u8; 34]
Trait Implementations§
Source§impl Clone for Jpeg2000CodingStyle
impl Clone for Jpeg2000CodingStyle
Source§fn clone(&self) -> Jpeg2000CodingStyle
fn clone(&self) -> Jpeg2000CodingStyle
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 moreimpl Copy for Jpeg2000CodingStyle
Auto Trait Implementations§
impl Freeze for Jpeg2000CodingStyle
impl RefUnwindSafe for Jpeg2000CodingStyle
impl Send for Jpeg2000CodingStyle
impl Sync for Jpeg2000CodingStyle
impl Unpin for Jpeg2000CodingStyle
impl UnwindSafe for Jpeg2000CodingStyle
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