Trait reql::commands::Run [] [src]

pub trait Run: Connect {
    fn run<T>(&self, conn: &Self::Connection) -> Response<T>;
    fn run_with_args<T>(&self,
                        conn: &Self::Connection,
                        args: Args)
                        -> Response<T>; }

Run the query

Required Methods

Implementors