Struct tower_web::util::buf_stream::deflate::CompressStream[][src]

pub struct CompressStream<T> { /* fields omitted */ }

Compress a buf stream using zlib deflate.

Methods

impl<T> CompressStream<T> where
    T: BufStream
[src]

Create a new CompressStream which returns the compressed data from inner.

level specifies the compression level.

Trait Implementations

impl<T: Debug> Debug for CompressStream<T>
[src]

Formats the value using the given formatter. Read more

impl<T> BufStream for CompressStream<T> where
    T: BufStream
[src]

Values yielded by the BufStream.

The error type this BufStream might generate.

Attempt to pull out the next buffer of this stream, registering the current task for wakeup if the value is not yet available, and returning None if the stream is exhausted. Read more

Returns the bounds on the remaining length of the iterator. Read more

Takes two buf streams and creates a new buf stream over both in sequence. Read more

Consumes all data from self, storing it in byte storage of type T.

Auto Trait Implementations

impl<T> Send for CompressStream<T> where
    T: Send

impl<T> Sync for CompressStream<T> where
    T: Sync