pub struct ZstdDecoder { /* private fields */ }Available on crate feature
zstd only.Implementations§
Source§impl ZstdDecoder
impl ZstdDecoder
pub fn new() -> Self
pub fn new_with_params(params: &[DParameter]) -> Self
pub fn new_with_dict(dictionary: &[u8]) -> Result<Self>
Trait Implementations§
Source§impl Debug for ZstdDecoder
impl Debug for ZstdDecoder
Source§impl DecodeV2 for ZstdDecoder
impl DecodeV2 for ZstdDecoder
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
Source§impl DecodedSize for ZstdDecoder
impl DecodedSize for ZstdDecoder
Auto Trait Implementations§
impl Freeze for ZstdDecoder
impl RefUnwindSafe for ZstdDecoder
impl Send for ZstdDecoder
impl Sync for ZstdDecoder
impl Unpin for ZstdDecoder
impl !UnwindSafe for ZstdDecoder
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