pub enum ProgressionOrder {
Lrcp = 0,
Rlcp = 1,
Rpcl = 2,
Pcrl = 3,
Cprl = 4,
}Expand description
Progression order types
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