Trait BatchPreparedCommand

Source
pub trait BatchPreparedCommand<R = ()> {
    // Required methods
    fn queue(self);
    fn forget(self);
}
Expand description

Extension trait dedicated to PreparedCommand to add specific methods for the Pipeline & the Transaction executors

Required Methods§

Source

fn queue(self)

Queue a command.

Source

fn forget(self)

Queue a command and forget its response.

Implementors§