pub struct LargeValueMeta {
pub kind: LargeValueKind,
pub total_len: u64,
pub chunk_size: u32,
}Expand description
Metadata describing a large value container.
Fields§
§kind: LargeValueKindKind of payload (typed vs blob).
total_len: u64Total length of the payload in bytes.
chunk_size: u32Maximum chunk size in bytes.
Trait Implementations§
Source§impl Clone for LargeValueMeta
impl Clone for LargeValueMeta
Source§fn clone(&self) -> LargeValueMeta
fn clone(&self) -> LargeValueMeta
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 LargeValueMeta
impl Debug for LargeValueMeta
Source§impl PartialEq for LargeValueMeta
impl PartialEq for LargeValueMeta
impl Copy for LargeValueMeta
impl Eq for LargeValueMeta
impl StructuralPartialEq for LargeValueMeta
Auto Trait Implementations§
impl Freeze for LargeValueMeta
impl RefUnwindSafe for LargeValueMeta
impl Send for LargeValueMeta
impl Sync for LargeValueMeta
impl Unpin for LargeValueMeta
impl UnwindSafe for LargeValueMeta
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