pub struct LLenCommand { /* private fields */ }Expand description
Represents the LLEN command.
Implementations§
Trait Implementations§
Source§impl Clone for LLenCommand
impl Clone for LLenCommand
Source§fn clone(&self) -> LLenCommand
fn clone(&self) -> LLenCommand
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 LLenCommand
impl Command for LLenCommand
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 LLenCommand
impl Debug for LLenCommand
Auto Trait Implementations§
impl Freeze for LLenCommand
impl RefUnwindSafe for LLenCommand
impl Send for LLenCommand
impl Sync for LLenCommand
impl Unpin for LLenCommand
impl UnwindSafe for LLenCommand
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