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

Required Methods

Queue a command.

Queue a command and forget its response.

Implementors