pub enum LineOrder {
Increasing,
Decreasing,
Unspecified,
}
Expand description
In what order the Block
s of pixel data appear in a file.
Variants
Increasing
The blocks in the file are ordered in descending rows from left to right.
When compressing in parallel, this option requires potentially large amounts of memory.
In that case, use LineOrder::Unspecified
for best performance.
Decreasing
The blocks in the file are ordered in ascending rows from right to left.
When compressing in parallel, this option requires potentially large amounts of memory.
In that case, use LineOrder::Unspecified
for best performance.
Unspecified
The blocks are not ordered in a specific way inside the file. In multi-core file writing, this option offers the best performance.
Implementations
Trait Implementations
impl Copy for LineOrder
impl Eq for LineOrder
impl StructuralEq for LineOrder
impl StructuralPartialEq for LineOrder
Auto Trait Implementations
impl RefUnwindSafe for LineOrder
impl Send for LineOrder
impl Sync for LineOrder
impl Unpin for LineOrder
impl UnwindSafe for LineOrder
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more