[][src]Struct flate2::DecompressError

pub struct DecompressError(_);

Error returned when a decompression object finds that the input stream of bytes was not a valid input stream of bytes.

Methods

impl DecompressError
[src]

Indicates whether decompression failed due to requiring a dictionary.

The resulting integer is the Adler-32 checksum of the dictionary required.

Trait Implementations

impl Debug for DecompressError
[src]

Formats the value using the given formatter. Read more

impl Error for DecompressError
[src]

This method is soft-deprecated. Read more

The lower-level cause of this error, if any. Read more

impl From<DecompressError> for Error
[src]

Performs the conversion.

impl Display for DecompressError
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for DecompressError

impl Sync for DecompressError