Trait dbi::mysql::Connection

source ·
pub trait Connection: Sized {
    type Queryable: Queryable;
    type Inner: Future<Item = Self::Queryable, Error = Error> + Send + 'static;

    fn connection(self) -> Self::Inner;
}

Required Associated Types

Required Methods

Implementors