#[repr(i32)]pub enum PROG_ORDER {
OPJ_PROG_UNKNOWN = -1,
OPJ_LRCP = 0,
OPJ_RLCP = 1,
OPJ_RPCL = 2,
OPJ_PCRL = 3,
OPJ_CPRL = 4,
}
Expand description
Progression order
Variants§
OPJ_PROG_UNKNOWN = -1
< place-holder
OPJ_LRCP = 0
< layer-resolution-component-precinct order
OPJ_RLCP = 1
< resolution-layer-component-precinct order
OPJ_RPCL = 2
< resolution-precinct-component-layer order
OPJ_PCRL = 3
< precinct-component-resolution-layer order
OPJ_CPRL = 4
< component-precinct-resolution-layer order
Trait Implementations§
Source§impl Clone for PROG_ORDER
impl Clone for PROG_ORDER
Source§fn clone(&self) -> PROG_ORDER
fn clone(&self) -> PROG_ORDER
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 PROG_ORDER
impl Debug for PROG_ORDER
Source§impl Hash for PROG_ORDER
impl Hash for PROG_ORDER
Source§impl PartialEq for PROG_ORDER
impl PartialEq for PROG_ORDER
impl Copy for PROG_ORDER
impl Eq for PROG_ORDER
impl StructuralPartialEq for PROG_ORDER
Auto Trait Implementations§
impl Freeze for PROG_ORDER
impl RefUnwindSafe for PROG_ORDER
impl Send for PROG_ORDER
impl Sync for PROG_ORDER
impl Unpin for PROG_ORDER
impl UnwindSafe for PROG_ORDER
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