pub trait ClientCommandResult<'a, R>where
    R: FromValue,
{ fn send(self) -> Future<'a, R>; fn send_and_forget(self) -> Result<()>; }

Required Methods

Send command and forget its response

Errors

Any Redis driver Error that occur during the send operation

Implementors