pub struct ZlibDecoder { /* private fields */ }Available on crate feature
zlib only.Implementations§
Source§impl ZlibDecoder
impl ZlibDecoder
Trait Implementations§
Source§impl Debug for ZlibDecoder
impl Debug for ZlibDecoder
Source§impl DecodeV2 for ZlibDecoder
impl DecodeV2 for ZlibDecoder
Source§fn reinit(&mut self) -> Result<()>
fn reinit(&mut self) -> Result<()>
Reinitializes this decoder ready to decode a new member/frame of data.
Source§fn decode(
&mut self,
input: &mut PartialBuffer<&[u8]>,
output: &mut WriteBuffer<'_>,
) -> Result<bool>
fn decode( &mut self, input: &mut PartialBuffer<&[u8]>, output: &mut WriteBuffer<'_>, ) -> Result<bool>
Returns whether the end of the stream has been read
Auto Trait Implementations§
impl Freeze for ZlibDecoder
impl RefUnwindSafe for ZlibDecoder
impl Send for ZlibDecoder
impl Sync for ZlibDecoder
impl Unpin for ZlibDecoder
impl UnwindSafe for ZlibDecoder
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> Decode for T
impl<T> Decode for T
Source§fn reinit(&mut self) -> Result<(), Error>
fn reinit(&mut self) -> Result<(), Error>
Reinitializes this decoder ready to decode a new member/frame of data.
Source§fn decode(
&mut self,
input: &mut PartialBuffer<impl AsRef<[u8]>>,
output: &mut PartialBuffer<impl AsRef<[u8]> + AsMut<[u8]>>,
) -> Result<bool, Error>
fn decode( &mut self, input: &mut PartialBuffer<impl AsRef<[u8]>>, output: &mut PartialBuffer<impl AsRef<[u8]> + AsMut<[u8]>>, ) -> Result<bool, Error>
Returns whether the end of the stream has been read