Searched defs:DeflateDecoder (Results 1 – 4 of 4) sorted by relevance
171 pub struct DeflateDecoder<R> { struct176 pub fn reset_decoder_data<R>(zlib: &mut DeflateDecoder<R>) { in reset_decoder_data() argument180 impl<R: BufRead> DeflateDecoder<R> { implementation191 impl<R> DeflateDecoder<R> { implementation244 impl<R: BufRead> Read for DeflateDecoder<R> { implementation251 impl<R: AsyncRead + BufRead> AsyncRead for DeflateDecoder<R> {} implementation253 impl<W: BufRead + Write> Write for DeflateDecoder<W> { implementation264 impl<R: AsyncWrite + BufRead> AsyncWrite for DeflateDecoder<R> { implementation
168 pub struct DeflateDecoder<R> { struct169 inner: bufread::DeflateDecoder<BufReader<R>>, argument172 impl<R: Read> DeflateDecoder<R> { implementation190 impl<R> DeflateDecoder<R> { implementation242 impl<R: Read> Read for DeflateDecoder<R> { implementation249 impl<R: AsyncRead> AsyncRead for DeflateDecoder<R> {} implementation251 impl<W: Read + Write> Write for DeflateDecoder<W> { implementation262 impl<R: AsyncWrite + AsyncRead> AsyncWrite for DeflateDecoder<R> { implementation
220 pub struct DeflateDecoder<W: Write> { struct224 impl<W: Write> DeflateDecoder<W> { impl324 impl<W: Write> Write for DeflateDecoder<W> { implementation335 impl<W: AsyncWrite> AsyncWrite for DeflateDecoder<W> { implementation342 impl<W: Read + Write> Read for DeflateDecoder<W> { implementation349 impl<W: AsyncRead + AsyncWrite> AsyncRead for DeflateDecoder<W> {} implementation
129 static class DeflateDecoder extends CoderBase { class in Coders131 DeflateDecoder() { in DeflateDecoder() method in Coders.DeflateDecoder