pub struct LPushCommand { /* private fields */ }Expand description
Represents the LPUSH command.
Implementations§
Trait Implementations§
Source§impl Clone for LPushCommand
impl Clone for LPushCommand
Source§fn clone(&self) -> LPushCommand
fn clone(&self) -> LPushCommand
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Command for LPushCommand
impl Command for LPushCommand
Source§fn command_name(&self) -> &str
fn command_name(&self) -> &str
Get the command name
Source§fn parse_response(&self, response: RespValue) -> RedisResult<Self::Output>
fn parse_response(&self, response: RespValue) -> RedisResult<Self::Output>
Parse the response into the output type
Source§impl Debug for LPushCommand
impl Debug for LPushCommand
Auto Trait Implementations§
impl Freeze for LPushCommand
impl RefUnwindSafe for LPushCommand
impl Send for LPushCommand
impl Sync for LPushCommand
impl Unpin for LPushCommand
impl UnwindSafe for LPushCommand
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