Struct zstd::dict::EncoderDictionary
source · pub struct EncoderDictionary<'a> { /* private fields */ }
Expand description
Prepared dictionary for compression
A dictionary can include its own copy of the data (if it is 'static
), or it can merely point
to a separate buffer (if it has another lifetime).
Implementations§
source§impl EncoderDictionary<'static>
impl EncoderDictionary<'static>
Auto Trait Implementations§
impl<'a> Freeze for EncoderDictionary<'a>
impl<'a> RefUnwindSafe for EncoderDictionary<'a>
impl<'a> Send for EncoderDictionary<'a>
impl<'a> Sync for EncoderDictionary<'a>
impl<'a> Unpin for EncoderDictionary<'a>
impl<'a> UnwindSafe for EncoderDictionary<'a>
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