pub enum ValkeyProtocolVersion {
Resp3,
}Expand description
Wire protocol selected for managed Valkey connections.
Variants§
Resp3
RESP3, required by this connector for modern typed responses and push handling during reconnect detection.
Trait Implementations§
Source§impl Clone for ValkeyProtocolVersion
impl Clone for ValkeyProtocolVersion
Source§fn clone(&self) -> ValkeyProtocolVersion
fn clone(&self) -> ValkeyProtocolVersion
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ValkeyProtocolVersion
Source§impl Debug for ValkeyProtocolVersion
impl Debug for ValkeyProtocolVersion
impl Eq for ValkeyProtocolVersion
Source§impl PartialEq for ValkeyProtocolVersion
impl PartialEq for ValkeyProtocolVersion
impl StructuralPartialEq for ValkeyProtocolVersion
Auto Trait Implementations§
impl Freeze for ValkeyProtocolVersion
impl RefUnwindSafe for ValkeyProtocolVersion
impl Send for ValkeyProtocolVersion
impl Sync for ValkeyProtocolVersion
impl Unpin for ValkeyProtocolVersion
impl UnsafeUnpin for ValkeyProtocolVersion
impl UnwindSafe for ValkeyProtocolVersion
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