async_compression/futures/bufread/
mod.rs

1//! Types which operate over [`AsyncBufRead`](futures_io::AsyncBufRead) streams, both encoders and
2//! decoders for various formats.
3
4#[macro_use]
5mod macros;
6mod generic;
7
8pub(crate) use generic::{Decoder, Encoder};
9
10algos!(futures::bufread<R>);