Home
last modified time | relevance | path

Searched defs:GzDecoder (Results 1 – 3 of 3) sorted by relevance

/external/rust/crates/flate2/src/gz/
Dread.rs128 pub struct GzDecoder<R> { struct
129 inner: bufread::GzDecoder<BufReader<R>>, argument
132 impl<R: Read> GzDecoder<R> { impl
142 impl<R> GzDecoder<R> { implementation
167 impl<R: Read> Read for GzDecoder<R> { implementation
173 impl<R: Read + Write> Write for GzDecoder<R> { implementation
Dwrite.rs203 pub struct GzDecoder<W: Write> { struct
212 impl<W: Write> GzDecoder<W> { argument
322 impl<W: Write> Write for GzDecoder<W> { implementation
370 impl<W: Read + Write> Read for GzDecoder<W> { implementation
Dbufread.rs307 pub struct GzDecoder<R> { struct
308 inner: GzState,
309 header: Option<GzHeader>,
310 reader: CrcReader<deflate::bufread::DeflateDecoder<R>>,
311 multi: bool,
437 impl<R: BufRead> GzDecoder<R> { impl
472 impl<R> GzDecoder<R> { impl
497 impl<R: BufRead> Read for GzDecoder<R> { implementation
499 let GzDecoder { in read() localVariable
608 impl<R: BufRead + Write> Write for GzDecoder<R> { implementation