-
Notifications
You must be signed in to change notification settings - Fork 180
Closed
Labels
Description
The document says:
Lines 22 to 24 in f285e9a
/// This structure exposes a [`BufRead`] interface that will read uncompressed data | |
/// from the underlying reader and expose the compressed version as a [`BufRead`] | |
/// interface. |
but flate2::bufread::GzDecoder
only implement Read
.
Line 281 in f285e9a
impl<R: BufRead> Read for GzDecoder<R> { |
BufRead
interface is not implemented and exposed.