Enum weezl::LzwError [−][src]
pub enum LzwError { InvalidCode, }
The error kind after unsuccessful coding of an LZW stream.
Variants
The input contained an invalid code.
For decompression this refers to a code larger than those currently known through the prior
decoding stages. For compression this refers to a byte that has no code representation due
to being larger than permitted by the size
parameter given to the Encoder.