Home
last modified time | relevance | path

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

/external/rust/crates/flate2/src/gz/
Dread.rs133 pub struct GzDecoder<R> { struct
134 inner: bufread::GzDecoder<BufReader<R>>, argument
137 impl<R: Read> GzDecoder<R> { implementation
147 impl<R> GzDecoder<R> { implementation
172 impl<R: Read> Read for GzDecoder<R> { implementation
179 impl<R: AsyncRead> AsyncRead for GzDecoder<R> {} implementation
181 impl<R: Read + Write> Write for GzDecoder<R> { implementation
192 impl<R: AsyncWrite + AsyncRead> AsyncWrite for GzDecoder<R> { implementation
Dbufread.rs300 pub struct GzDecoder<R> { struct
301 inner: GzState,
302 header: Option<GzHeader>,
303 reader: CrcReader<deflate::bufread::DeflateDecoder<R>>,
304 multi: bool,
351 impl<R: BufRead> GzDecoder<R> { impl
386 impl<R> GzDecoder<R> { impl
411 impl<R: BufRead> Read for GzDecoder<R> { implementation
413 let GzDecoder { in read() localVariable
521 impl<R: AsyncRead + BufRead> AsyncRead for GzDecoder<R> {} implementation
[all …]
Dwrite.rs219 pub struct GzDecoder<W: Write> { struct
228 impl<W: Write> GzDecoder<W> { argument
338 impl<W: Write> Write for GzDecoder<W> { implementation
389 impl<W: AsyncWrite> AsyncWrite for GzDecoder<W> { implementation
396 impl<W: Read + Write> Read for GzDecoder<W> { implementation
403 impl<W: AsyncRead + AsyncWrite> AsyncRead for GzDecoder<W> {} implementation