pub enum RespFrame {
}Expand description
A single frame in a RESP stream.
Variants§
Array(usize)
Attribute(usize)
Bignum(Bytes)
BlobError(Bytes)
BlobString(Bytes)
Boolean(bool)
Double(OrderedFloat<f64>)
Integer(i64)
Map(usize)
Nil
Push(usize)
Set(usize)
SimpleError(Bytes)
SimpleString(Bytes)
Verbatim(Bytes, Bytes)
Trait Implementations§
source§impl PartialEq for RespFrame
impl PartialEq for RespFrame
impl Eq for RespFrame
impl StructuralEq for RespFrame
impl StructuralPartialEq for RespFrame
Auto Trait Implementations§
impl RefUnwindSafe for RespFrame
impl Send for RespFrame
impl Sync for RespFrame
impl Unpin for RespFrame
impl UnwindSafe for RespFrame
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