Struct tiff::encoder::compression::uncompressed::Uncompressed
source · pub struct Uncompressed;
Expand description
The default algorithm which does not compress at all.
Trait Implementations§
source§impl Clone for Uncompressed
impl Clone for Uncompressed
source§fn clone(&self) -> Uncompressed
fn clone(&self) -> Uncompressed
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 Compression for Uncompressed
impl Compression for Uncompressed
source§const COMPRESSION_METHOD: CompressionMethod = CompressionMethod::None
const COMPRESSION_METHOD: CompressionMethod = CompressionMethod::None
The corresponding tag to the algorithm.
source§fn get_algorithm(&self) -> Compressor
fn get_algorithm(&self) -> Compressor
Method to optain a type that can store each variant of comression algorithm.
source§impl CompressionAlgorithm for Uncompressed
impl CompressionAlgorithm for Uncompressed
source§impl Debug for Uncompressed
impl Debug for Uncompressed
source§impl Default for Uncompressed
impl Default for Uncompressed
source§fn default() -> Uncompressed
fn default() -> Uncompressed
Returns the “default value” for a type. Read more
source§impl PartialEq for Uncompressed
impl PartialEq for Uncompressed
source§fn eq(&self, other: &Uncompressed) -> bool
fn eq(&self, other: &Uncompressed) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for Uncompressed
impl Eq for Uncompressed
impl StructuralPartialEq for Uncompressed
Auto Trait Implementations§
impl Freeze for Uncompressed
impl RefUnwindSafe for Uncompressed
impl Send for Uncompressed
impl Sync for Uncompressed
impl Unpin for Uncompressed
impl UnwindSafe for Uncompressed
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
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more