pub enum StoredValue {
DictRef(u32),
Inline(Vec<u8>),
}Expand description
Stored field value representation after dictionary encoding.
Variants§
DictRef(u32)
Reference to a dictionary value.
Inline(Vec<u8>)
Inline bytes stored directly in the packed payload.
Trait Implementations§
Source§impl Clone for StoredValue
impl Clone for StoredValue
Source§fn clone(&self) -> StoredValue
fn clone(&self) -> StoredValue
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for StoredValue
impl Debug for StoredValue
Source§impl PartialEq for StoredValue
impl PartialEq for StoredValue
impl Eq for StoredValue
impl StructuralPartialEq for StoredValue
Auto Trait Implementations§
impl Freeze for StoredValue
impl RefUnwindSafe for StoredValue
impl Send for StoredValue
impl Sync for StoredValue
impl Unpin for StoredValue
impl UnsafeUnpin for StoredValue
impl UnwindSafe for StoredValue
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