pub struct Command<T> { /* private fields */ }
Expand description
Basic command that can be sent to Redis client
The redis crate is re-exposed to make use of redis::cmd()
function to generate commands
Implementations§
Trait Implementations§
Source§impl<T: FromRedisValue + 'static> Handler<Command<T>> for RedisExecutorSync
impl<T: FromRedisValue + 'static> Handler<Command<T>> for RedisExecutorSync
Auto Trait Implementations§
impl<T> Freeze for Command<T>
impl<T> RefUnwindSafe for Command<T>where
T: RefUnwindSafe,
impl<T> Send for Command<T>where
T: Send,
impl<T> Sync for Command<T>where
T: Sync,
impl<T> Unpin for Command<T>where
T: Unpin,
impl<T> UnwindSafe for Command<T>where
T: UnwindSafe,
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