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

pub trait HasArguments<'q> where
    <Self::Arguments as Arguments<'q>>::Database == Self::Database
{ 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

type Arguments: Arguments<'q>

The concrete Arguments implementation for this database.

type ArgumentBuffer

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...