Enum lzma::Error [] [src]

pub enum Error {
    IO(Error),
    Corrupted,
    InvalidProperties,
    MissingMarker,
    HasMoreData,
    NeedMoreData,
    FinishedWithMarker,
}

Errors for Reader and Writer.

Variants

A downstream IO error.

The stream is corrupted.

Invalid model values.

The EOS marker is missing.

The stream has more data but the uncompressed size has been reached.

The stream has finished but the uncompressed size has not been reached.

The stream has finished unexpectedly with a marker.

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter.

impl From<Error> for Error
[src]

Performs the conversion.

impl Display for Error
[src]

Formats the value using the given formatter. Read more

impl Error for Error
[src]

A short description of the error. Read more

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