pub struct ZstdDecoder { /* private fields */ }Expand description
Zstandard decoder.
Implementations§
Source§impl ZstdDecoder
impl ZstdDecoder
Sourcepub fn set_dictionary(&mut self, dict: &[u8])
pub fn set_dictionary(&mut self, dict: &[u8])
Set a dictionary for decompression.
Must match the dictionary used during compression.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ZstdDecoder
impl RefUnwindSafe for ZstdDecoder
impl Send for ZstdDecoder
impl Sync for ZstdDecoder
impl Unpin for ZstdDecoder
impl UnsafeUnpin 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