[][src]Trait sqlx_core::database::HasArguments

pub trait HasArguments<'q> {
    type Database: Database;
    type Arguments: Arguments<'q, Database = Self::Database>;
    type ArgumentBuffer;
}

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

type Database: Database

type Arguments: Arguments<'q, Database = Self::Database>

The concrete Arguments implementation for this database.

type ArgumentBuffer

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

Loading content...

Implementors

Loading content...