Trait rustis::client::ClientPreparedCommand

source ·
pub trait ClientPreparedCommand<'a, R> {
    // Required method
    fn forget(self) -> Result<()>;
}
Expand description

Extension trait dedicated to PreparedCommand to add specific methods for the Client executor

Required Methods§

source

fn forget(self) -> Result<()>

Send command and forget its response

§Errors

Any Redis driver Error that occur during the send operation

Implementors§

source§

impl<'a, R: Response> ClientPreparedCommand<'a, R> for PreparedCommand<'a, &'a Client, R>