Trait sqlx::database::HasArguments[][src]

pub trait HasArguments<'q> {
    type Database: Database;
    type Arguments: Arguments<'q>;
    type ArgumentBuffer;
}
Expand description

Associate Database with an Arguments of a generic lifetime.


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

Associated Types

The concrete Arguments implementation for this database.

The concrete type used as a buffer for arguments while encoding.

Implementors