Struct mysql_async::Conn [] [src]

pub struct Conn { /* fields omitted */ }

Mysql connection

Methods

impl Conn
[src]

Returns future that resolves to Conn.

Returns future that resolves to Conn if COM_PING executed successfully.

Returns future that executes query and resolves to TextQueryResult.

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

Returns future that performs query, drops result and resolves to Conn.

Returns future that resolves to a Stmt.

Returns future that prepares and executes statement in one pass and resolves to BinQueryResult.

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, drops result and resolves to Conn.

Returns future that prepares statement, performs batch execution and resolves to Conn.

All results will be dropped.

Returns future that resolves to a Conn with COM_RESET_CONNECTION executed on it.

Returns future that consumes Conn and disconnects it from a server.

Returns future that starts transaction and resolves to Transaction.

Trait Implementations

impl Drop for Conn
[src]

A method called when the value goes out of scope. Read more

impl Debug for Conn
[src]

Formats the value using the given formatter.