pub trait PrepareCommand<T> {
    fn prepare_command<R: FromValue>(
        &self,
        command: Command
    ) -> CommandResult<'_, T, R>; }

Required Methods

Implementors