Struct mysql_async::TransBinQueryResult [] [src]

pub struct TransBinQueryResult(_);

It is like BinQueryResult for transactions.

Trait Implementations

impl QueryResult for TransBinQueryResult
[src]

Affected rows value returned by a server, if any.

Last insert id value returned by a server, if any.

Warnings count value returned by a server, if any.

Bytes of info string returned by a server, if any.

Info bytes lossy converted to UTF-8, if any.

Bytes of session state changed value returned by a server, if any.

Session state changed value lossy converted to UTF-8, if any.

impl UnconsumedQueryResult for TransBinQueryResult
[src]

Returns future which collects result set of this query result. Read more

It returns future that collects all result sets of a multi-result set. Read more

It returns future that maps every Row of this query result to U.

It returns future that reduce rows of this query result to an instance of A.

It returns future that applies F to every Row of this query result.

It returns future that drops result and resolves to wrapped Conn on Stmt.