Struct lzma::Reader [] [src]

pub struct Reader<R: Read> { /* fields omitted */ }

A LZMA stream reader.

Methods

impl<R: Read> Reader<R>
[src]

Creates a LZMA reader with the given model properties and the given stream.

Creates a LZMA stream from the given stream, reading the model properties.

Returns the model properties.

Returns the size of the internal cache.

Unwraps this Reader, returning the underlying reader.

Note that any leftover data in the internal buffer is lost.

Returns the inner stream mutably.

Note that reading bytes from the raw stream might corrupt the decoding.

Sets the uncompressed size.

Note that changing the uncompressed size might corrupt the decoding.

Resets the decoder.

Note that resetting might corrupt the decoding.

Decode one unit and return the decoded amount.

Note the writer should not do partial writes, or some of the decoded data will be lost.

Trait Implementations

impl<R: Debug + Read> Debug for Reader<R>
[src]

Formats the value using the given formatter.

impl<R: Read> Read for Reader<R>
[src]

Pull some bytes from this source into the specified buffer, returning how many bytes were read. Read more

Read all bytes until EOF in this source, placing them into buf. Read more

Read all bytes until EOF in this source, placing them into buf. Read more

Read the exact number of bytes required to fill buf. Read more

Creates a "by reference" adaptor for this instance of Read. Read more

Transforms this Read instance to an Iterator over its bytes. Read more

🔬 This is a nightly-only experimental API. (io)

the semantics of a partial read/write of where errors happen is currently unclear and may change

Transforms this Read instance to an Iterator over chars. Read more

Creates an adaptor which will chain this stream with another. Read more

Creates an adaptor which will read at most limit bytes from it. Read more