Skip to main content

GetReply

Enum GetReply 

Source
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> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.