[][src]Trait reql::Run

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

Lazily execute a command

Required methods

fn run<T: DeserializeOwned + Send + Debug + 'static>(
    &self,
    args: A
) -> Result<Response<T>>

Prepare a commmand to be submitted

Loading content...

Implementors

impl<A: IntoArg + Debug> Run<A> for Client[src]

Loading content...