Trait reql::Run[][src]

pub trait Run<A: IntoArg> {
    fn run<T: DeserializeOwned + Send + 'static>(
        &self,
        args: A
    ) -> Result<Response<T>>; }

Lazily execute a command

Required Methods

Prepare a commmand to be submitted

Implementors