pub trait Queryable: ConnectionLikewhere
    Self: Sized + 'static,
{ fn ping(self) -> BoxFuture<Self> { ... } fn disconnect(self) -> BoxFuture<()> { ... } fn query<Q: AsRef<str>>(
        self,
        query: Q
    ) -> BoxFuture<QueryResult<Self, TextProtocol>> { ... } fn first<Q, R>(self, query: Q) -> BoxFuture<(Self, Option<R>)>
    where
        Q: AsRef<str>,
        R: FromRow
, { ... } fn drop_query<Q: AsRef<str>>(self, query: Q) -> BoxFuture<Self> { ... } fn prepare<Q: AsRef<str>>(self, query: Q) -> BoxFuture<Stmt<Self>> { ... } fn prep_exec<Q, P>(
        self,
        query: Q,
        params: P
    ) -> BoxFuture<QueryResult<Self, BinaryProtocol>>
    where
        Q: AsRef<str>,
        P: Into<Params>
, { ... } fn first_exec<Q, P, R>(
        self,
        query: Q,
        params: P
    ) -> BoxFuture<(Self, Option<R>)>
    where
        Q: AsRef<str>,
        P: Into<Params>,
        R: FromRow
, { ... } fn drop_exec<Q, P>(self, query: Q, params: P) -> BoxFuture<Self>
    where
        Q: AsRef<str>,
        P: Into<Params>
, { ... } fn batch_exec<Q, I, P>(self, query: Q, params_iter: I) -> BoxFuture<Self>
    where
        Q: AsRef<str>,
        I: IntoIterator<Item = P> + Send + 'static,
        I::IntoIter: Send + 'static,
        Params: From<P>,
        P: Send + 'static
, { ... } fn start_transaction(
        self,
        options: TransactionOptions
    ) -> BoxFuture<Transaction<Self>> { ... } }
Expand description

Represents something queryable like connection or transaction.

Provided Methods§

Returns future that resolves to Conn if COM_PING executed successfully.

Returns future that disconnects this connection from a server.

Returns future that performs query.

Returns future that resolves to a first row of result of a query execution (if any).

Returned future will call R::from_row(row) internally.

Returns future that performs query. Result will be dropped.

Returns future that prepares statement.

Returns future that prepares and executes statement in one pass.

Returns future that resolves to a first row of result of a statement execution (if any).

Returned future will call R::from_row(row) internally.

Returns future that prepares and executes statement. Result will be dropped.

Returns future that prepares statement and performs batch execution. Results will be dropped.

Returns future that starts transaction.

Implementors§