Struct lzw::DecoderEarlyChange[][src]

pub struct DecoderEarlyChange<R: BitReader> { /* fields omitted */ }
Expand description

Decoder for a LZW compressed stream using an “early change” algorithm (used in TIFF files).

The maximum supported code size is 16 bits. The decoder assumes two special code word to be present in the stream:

  • CLEAR_CODE == 1 << min_code_size
  • END_CODE == CLEAR_CODE + 1

Furthermore the decoder expects the stream to start with a CLEAR_CODE. This corresponds to the implementation needed for en- and decoding GIF and TIFF files.

Implementations

Creates a new LZW decoder.

Tries to obtain and decode a code word from bytes.

Returns the number of bytes that have been consumed from bytes. An empty slice does not indicate EOF.

Trait Implementations

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.