Enum tiff::encoder::compression::DeflateLevel
source · [−]#[non_exhaustive]
pub enum DeflateLevel {
Fast,
Balanced,
Best,
}
Expand description
The level of compression used by the Deflate algorithm. It allows trading compression ratio for compression speed.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
Fast
The fastest possible compression mode.
Balanced
The conserative choice between speed and ratio.
Best
The best compression available with Deflate.
Trait Implementations
sourceimpl Clone for DeflateLevel
impl Clone for DeflateLevel
sourcefn clone(&self) -> DeflateLevel
fn clone(&self) -> DeflateLevel
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for DeflateLevel
impl Debug for DeflateLevel
sourceimpl Default for DeflateLevel
impl Default for DeflateLevel
sourceimpl Ord for DeflateLevel
impl Ord for DeflateLevel
sourceimpl PartialEq<DeflateLevel> for DeflateLevel
impl PartialEq<DeflateLevel> for DeflateLevel
sourceimpl PartialOrd<DeflateLevel> for DeflateLevel
impl PartialOrd<DeflateLevel> for DeflateLevel
sourcefn partial_cmp(&self, other: &DeflateLevel) -> Option<Ordering>
fn partial_cmp(&self, other: &DeflateLevel) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
impl Copy for DeflateLevel
impl Eq for DeflateLevel
impl StructuralEq for DeflateLevel
impl StructuralPartialEq for DeflateLevel
Auto Trait Implementations
impl RefUnwindSafe for DeflateLevel
impl Send for DeflateLevel
impl Sync for DeflateLevel
impl Unpin for DeflateLevel
impl UnwindSafe for DeflateLevel
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> Pointable for T
impl<T> Pointable for T
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