mysql_async 0.37.0

Tokio based asynchronous MySql client library.
Documentation
use futures_core::future::BoxFuture;

use crate::Conn;

pub use self::{change_user::*, exec::*, next_set::*, ping::*, prepare::*, query::*, reset::*};

mod change_user;
mod exec;
mod next_set;
mod ping;
mod prepare;
mod query;
mod reset;

mod helpers;

/// Connection will be broken if this operation isn't finished.
pub trait Routine<T> {
    fn call<'a>(self, conn: &'a mut Conn) -> BoxFuture<'a, crate::Result<T>>
    where
        Self: 'a;
}