#[repr(i32)]pub enum ProgressionOrder {
LRCP = 0,
RLCP = 1,
RPCL = 2,
PCRL = 3,
CPRL = 4,
}Expand description
JPEG 2000 progression order for packet sequencing.
Determines the order in which packets are written into the codestream: Layer (L), Resolution (R), Component (C), and Position/Precinct (P).
Variants§
LRCP = 0
Layer–Resolution–Component–Position.
RLCP = 1
Resolution–Layer–Component–Position.
RPCL = 2
Resolution–Position–Component–Layer.
PCRL = 3
Position–Component–Resolution–Layer.
CPRL = 4
Component–Position–Resolution–Layer.
Implementations§
Trait Implementations§
Source§impl Clone for ProgressionOrder
impl Clone for ProgressionOrder
Source§fn clone(&self) -> ProgressionOrder
fn clone(&self) -> ProgressionOrder
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 ProgressionOrder
impl Debug for ProgressionOrder
Source§impl PartialEq for ProgressionOrder
impl PartialEq for ProgressionOrder
impl Copy for ProgressionOrder
impl Eq for ProgressionOrder
impl StructuralPartialEq for ProgressionOrder
Auto Trait Implementations§
impl Freeze for ProgressionOrder
impl RefUnwindSafe for ProgressionOrder
impl Send for ProgressionOrder
impl Sync for ProgressionOrder
impl Unpin for ProgressionOrder
impl UnsafeUnpin for ProgressionOrder
impl UnwindSafe for ProgressionOrder
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