pub enum GetReply<'a> {
Bytes(Cow<'a, [u8]>),
ArcBulk(Arc<Box<[u8]>>),
}Expand description
L1 return shape for Store::get_for_reply — lets the reactor’s reply
path choose between memcpy (Bytes) and writev zero-copy (ArcBulk)
off one keyspace lookup.
Variants§
Bytes(Cow<'a, [u8]>)
Inline-encoded value — caller memcpys the bytes into its output Vec (small replies; encoding cost is tiny vs the RTT floor).
ArcBulk(Arc<Box<[u8]>>)
L1 (2026-06-21): Arc-backed bulk. The reactor’s reply path pushes
the Arc into the conn’s output_arcs so the next writev iovec
list points DIRECTLY at the value bytes — skipping the per-GET
memcpy that valkey’s tryAvoidBulkStrCopyToReply likewise avoids.
Auto Trait Implementations§
impl<'a> Freeze for GetReply<'a>
impl<'a> RefUnwindSafe for GetReply<'a>
impl<'a> Send for GetReply<'a>
impl<'a> Sync for GetReply<'a>
impl<'a> Unpin for GetReply<'a>
impl<'a> UnsafeUnpin for GetReply<'a>
impl<'a> UnwindSafe for GetReply<'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