Enum redis_async::resp::RespValue
source · [−]pub enum RespValue {
Nil,
Array(Vec<RespValue>),
BulkString(Vec<u8>),
Error(String),
Integer(i64),
SimpleString(String),
}
Expand description
A single RESP value, this owns the data that is read/to-be written to Redis.
It is cloneable to allow multiple copies to be delivered in certain circumstances, e.g. multiple subscribers to the same topic.
Variants
Nil
Array(Vec<RespValue>)
Zero, one or more other RespValue
s.
BulkString(Vec<u8>)
A bulk string. In Redis terminology a string is a byte-array, so this is stored as a
vector of u8
s to allow clients to interpret the bytes as appropriate.
Error(String)
An error from the Redis server
Integer(i64)
Redis documentation defines an integer as being a signed 64-bit integer: https://redis.io/topics/protocol#resp-integers
SimpleString(String)
Implementations
sourceimpl RespValue
impl RespValue
sourcepub fn append<T>(self, other: impl IntoIterator<Item = T>) -> Self where
T: Into<RespValue>,
pub fn append<T>(self, other: impl IntoIterator<Item = T>) -> Self where
T: Into<RespValue>,
Convenience function for building dynamic Redis commands with variable numbers of arguments, e.g. RPUSH
This will panic if called for anything other than arrays
Trait Implementations
sourceimpl FromResp for RespValue
impl FromResp for RespValue
impl Eq for RespValue
impl StructuralEq for RespValue
impl StructuralPartialEq for RespValue
Auto Trait Implementations
impl RefUnwindSafe for RespValue
impl Send for RespValue
impl Sync for RespValue
impl Unpin for RespValue
impl UnwindSafe for RespValue
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more