pub enum CompressionDictionary {
TreeStateV1,
}Expand description
A versioned zstd dictionary available to object encoders.
IDs are durable storage-format identifiers. Once an ID has shipped, its bytes must never change or be removed from the decoder registry.
Variants§
TreeStateV1
Dictionary v1, trained offline over serialized tree and state objects.
Trait Implementations§
Source§impl Clone for CompressionDictionary
impl Clone for CompressionDictionary
Source§fn clone(&self) -> CompressionDictionary
fn clone(&self) -> CompressionDictionary
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for CompressionDictionary
Source§impl Debug for CompressionDictionary
impl Debug for CompressionDictionary
impl Eq for CompressionDictionary
Source§impl PartialEq for CompressionDictionary
impl PartialEq for CompressionDictionary
impl StructuralPartialEq for CompressionDictionary
Auto Trait Implementations§
impl Freeze for CompressionDictionary
impl RefUnwindSafe for CompressionDictionary
impl Send for CompressionDictionary
impl Sync for CompressionDictionary
impl Unpin for CompressionDictionary
impl UnsafeUnpin for CompressionDictionary
impl UnwindSafe for CompressionDictionary
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