Searched defs:GzDecoder (Results 1 – 3 of 3) sorted by relevance
133 pub struct GzDecoder<R> { struct134 inner: bufread::GzDecoder<BufReader<R>>, argument137 impl<R: Read> GzDecoder<R> { implementation147 impl<R> GzDecoder<R> { implementation172 impl<R: Read> Read for GzDecoder<R> { implementation179 impl<R: AsyncRead> AsyncRead for GzDecoder<R> {} implementation181 impl<R: Read + Write> Write for GzDecoder<R> { implementation192 impl<R: AsyncWrite + AsyncRead> AsyncWrite for GzDecoder<R> { implementation
300 pub struct GzDecoder<R> { struct301 inner: GzState,302 header: Option<GzHeader>,303 reader: CrcReader<deflate::bufread::DeflateDecoder<R>>,304 multi: bool,351 impl<R: BufRead> GzDecoder<R> { impl386 impl<R> GzDecoder<R> { impl411 impl<R: BufRead> Read for GzDecoder<R> { implementation413 let GzDecoder { in read() localVariable521 impl<R: AsyncRead + BufRead> AsyncRead for GzDecoder<R> {} implementation[all …]
219 pub struct GzDecoder<W: Write> { struct228 impl<W: Write> GzDecoder<W> { argument338 impl<W: Write> Write for GzDecoder<W> { implementation389 impl<W: AsyncWrite> AsyncWrite for GzDecoder<W> { implementation396 impl<W: Read + Write> Read for GzDecoder<W> { implementation403 impl<W: AsyncRead + AsyncWrite> AsyncRead for GzDecoder<W> {} implementation