pub struct KvEntry {
pub hash: u128,
pub size: u32,
pub mtime_ns: u64,
pub value: Option<Vec<u8>>,
}Expand description
One mirrored entry.
Fields§
§hash: u128BLAKE3-128 of the value bytes.
size: u32§mtime_ns: u64§value: Option<Vec<u8>>Present iff the value arrived inline (size ≤ the subscription’s
inline_max); None = fetch on demand.
Trait Implementations§
impl Eq for KvEntry
impl StructuralPartialEq for KvEntry
Auto Trait Implementations§
impl Freeze for KvEntry
impl RefUnwindSafe for KvEntry
impl Send for KvEntry
impl Sync for KvEntry
impl Unpin for KvEntry
impl UnsafeUnpin for KvEntry
impl UnwindSafe for KvEntry
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