Trait sqlx::database::HasStatement[][src]

pub trait HasStatement<'q> {
    type Database: Database;
    type Statement: Statement<'q>;
}
Expand description

Associate Database with a Statement of a generic lifetime.


The upcoming Rust feature, Generic Associated Types, should obviate the need for this trait.

Associated Types

The concrete Statement implementation for this database.

Implementors