Trait reql::Run

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

Lazily execute a command

Required Methods

Prepare a commmand to be submitted

Implementors