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

pub trait HasArguments<'q> {
    type Database: Database;
    type Arguments: Arguments<'q>;
    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[src]

type Arguments: Arguments<'q>[src]

The concrete Arguments implementation for this database.

type ArgumentBuffer[src]

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

Loading content...

Implementors

impl<'_> HasArguments<'_> for Mssql[src]

impl<'_> HasArguments<'_> for MySql[src]

impl<'_> HasArguments<'_> for Postgres[src]

impl<'q> HasArguments<'q> for Any[src]

impl<'q> HasArguments<'q> for Sqlite[src]

Loading content...