pub struct HGetCommand { /* private fields */ }Expand description
HGET command - Get the value of a hash field
Implementations§
Trait Implementations§
Source§impl Clone for HGetCommand
impl Clone for HGetCommand
Source§fn clone(&self) -> HGetCommand
fn clone(&self) -> HGetCommand
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 HGetCommand
impl Command for HGetCommand
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 HGetCommand
impl Debug for HGetCommand
Source§impl PipelineCommand for HGetCommand
impl PipelineCommand for HGetCommand
Auto Trait Implementations§
impl Freeze for HGetCommand
impl RefUnwindSafe for HGetCommand
impl Send for HGetCommand
impl Sync for HGetCommand
impl Unpin for HGetCommand
impl UnwindSafe for HGetCommand
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