pub enum RedisArgument {
Int(i64),
String(String),
Bytes(Vec<u8>),
}
Expand description
Enumeration of base types that can be put into
RedisCommand
chain as argument.
Variants§
Trait Implementations§
Source§impl IntoRedisArgument for RedisArgument
impl IntoRedisArgument for RedisArgument
fn into_redis_argument(self) -> RedisArgument
Auto Trait Implementations§
impl Freeze for RedisArgument
impl RefUnwindSafe for RedisArgument
impl Send for RedisArgument
impl Sync for RedisArgument
impl Unpin for RedisArgument
impl UnwindSafe for RedisArgument
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