Trait ClientPreparedCommand

Source
pub trait ClientPreparedCommand<'a, R>
where R: FromValue,
{ // Required method fn forget(self) -> Result<()>; }

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> ClientPreparedCommand<'a, R> for PreparedCommand<'a, Client, R>
where R: FromValue + Send + 'a,

Source§

impl<'a, R> ClientPreparedCommand<'a, R> for PreparedCommand<'a, InnerClient, R>
where R: FromValue + Send + 'a,