Trait PipelinePreparedCommand

Source
pub trait PipelinePreparedCommand<'a, R>
where R: FromValue,
{ // Required methods fn queue(self); fn forget(self); }

Required Methods§

Source

fn queue(self)

Queue a command.

Source

fn forget(self)

Queue a command and forget its response.

Implementors§

Source§

impl<'a, R> PipelinePreparedCommand<'a, R> for PreparedCommand<'a, Pipeline, R>
where R: FromValue + Send + 'a,

Source§

impl<'a, R> PipelinePreparedCommand<'a, R> for PreparedCommand<'a, Transaction, R>
where R: FromValue + Send + 'a,