Trait sqlx_core_oldapi::arguments::IntoArguments

source ·
pub trait IntoArguments<'q, DB: HasArguments<'q>>: Sized + Send {
    // Required method
    fn into_arguments(self) -> <DB as HasArguments<'q>>::Arguments;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<'q> IntoArguments<'q, <AnyArguments<'q> as Arguments<'q>>::Database> for AnyArguments<'q>

source§

impl<'q> IntoArguments<'q, <MssqlArguments as Arguments<'q>>::Database> for MssqlArguments

Available on crate feature mssql only.
source§

impl<'q> IntoArguments<'q, <MySqlArguments as Arguments<'q>>::Database> for MySqlArguments

Available on crate feature mysql only.
source§

impl<'q> IntoArguments<'q, <PgArguments as Arguments<'q>>::Database> for PgArguments

Available on crate feature postgres only.
source§

impl<'q> IntoArguments<'q, <SqliteArguments<'q> as Arguments<'q>>::Database> for SqliteArguments<'q>

Available on crate feature sqlite only.
source§

impl<'q, DB: HasArguments<'q>> IntoArguments<'q, DB> for ImmutableArguments<'q, DB>