Type Definition mysql_async::futures::TransFirstExec [] [src]

type TransFirstExec<R> = Map<FirstExec<R>, fn(_: (Option<R>, Conn)) -> (Option<R>, Transaction)>;

Future that prepares and executes statement and resolves to (Option<R>, Transaction).

Where Option<R> is the first row of a statement execution result (if any).