pub struct Lzw;
Expand description
The LZW algorithm used to compress image data in TIFF files.
Trait Implementations
sourceimpl Compression for Lzw
impl Compression for Lzw
sourceconst COMPRESSION_METHOD: CompressionMethod = CompressionMethod::LZW
const COMPRESSION_METHOD: CompressionMethod = CompressionMethod::LZW
The corresponding tag to the algorithm.
sourcefn get_algorithm(&self) -> Compressor
fn get_algorithm(&self) -> Compressor
Method to optain a type that can store each variant of comression algorithm.
sourceimpl CompressionAlgorithm for Lzw
impl CompressionAlgorithm for Lzw
impl Copy for Lzw
impl Eq for Lzw
impl StructuralEq for Lzw
impl StructuralPartialEq for Lzw
Auto Trait Implementations
impl RefUnwindSafe for Lzw
impl Send for Lzw
impl Sync for Lzw
impl Unpin for Lzw
impl UnwindSafe for Lzw
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)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more