Searched refs:MultiGzDecoder (Results 1 – 7 of 7) sorted by relevance
239 pub struct MultiGzDecoder<R> { struct240 inner: bufread::MultiGzDecoder<BufReader<R>>, argument243 impl<R: Read> MultiGzDecoder<R> { impl247 pub fn new(r: R) -> MultiGzDecoder<R> { in new()248 MultiGzDecoder { in new()249 inner: bufread::MultiGzDecoder::new(BufReader::new(r)), in new()254 impl<R> MultiGzDecoder<R> { implementation279 impl<R: Read> Read for MultiGzDecoder<R> { implementation286 impl<R: AsyncRead> AsyncRead for MultiGzDecoder<R> {} implementation288 impl<R: Read + Write> Write for MultiGzDecoder<R> { implementation[all …]
581 pub struct MultiGzDecoder<R>(GzDecoder<R>); struct583 impl<R: BufRead> MultiGzDecoder<R> { impl587 pub fn new(r: R) -> MultiGzDecoder<R> { in new()588 MultiGzDecoder(GzDecoder::new(r).multi(true)) in new()592 impl<R> MultiGzDecoder<R> { impl617 impl<R: BufRead> Read for MultiGzDecoder<R> { implementation624 impl<R: AsyncRead + BufRead> AsyncRead for MultiGzDecoder<R> {} implementation626 impl<R: BufRead + Write> Write for MultiGzDecoder<R> { implementation637 impl<R: AsyncWrite + BufRead> AsyncWrite for MultiGzDecoder<R> { implementation
3 use flate2::bufread::MultiGzDecoder;20 let mut gz = MultiGzDecoder::new(&bytes[..]); in decode_reader()
3 use flate2::read::MultiGzDecoder;20 let mut gz = MultiGzDecoder::new(&bytes[..]); in decode_reader()
134 pub use crate::gz::read::MultiGzDecoder;161 pub use crate::gz::bufread::MultiGzDecoder;175 _assert_send_sync::<read::MultiGzDecoder<&[u8]>>(); in _assert_send_sync()
4 use flate2::read::MultiGzDecoder;65 MultiGzDecoder::new(f).read_to_end(&mut v)?; in extract_file_multi()
5 use flate2::read::{GzDecoder, MultiGzDecoder};84 AssertAsync(MultiGzDecoder::new(BadReader::new(f))), in test_multi_gz_asyncread()