Lines Matching defs:R
41 pub fn new(r: R, level: crate::Compression) -> ZlibEncoder<R> { in new()
49 pub fn new_with_compress(r: R, compression: crate::Compress) -> ZlibEncoder<R> { in new_with_compress()
67 pub fn reset(&mut self, r: R) -> R { in reset()
73 pub fn get_ref(&self) -> &R { in get_ref()
81 pub fn get_mut(&mut self) -> &mut R { in get_mut()
90 pub fn into_inner(self) -> R { in into_inner()
174 pub fn new(r: R) -> ZlibDecoder<R> { in new()
183 pub fn new_with_buf(r: R, buf: Vec<u8>) -> ZlibDecoder<R> { in new_with_buf()
191 pub fn new_with_decompress(r: R, decompression: Decompress) -> ZlibDecoder<R> { in new_with_decompress()
202 r: R, in new_with_decompress_and_buf()
205 ) -> ZlibDecoder<R> { in new_with_decompress_and_buf()
226 pub fn reset(&mut self, r: R) -> R { in reset()
232 pub fn get_ref(&self) -> &R { in get_ref()
240 pub fn get_mut(&mut self) -> &mut R { in get_mut()
249 pub fn into_inner(self) -> R { in into_inner()