ToPostgresSQL

Trait ToPostgresSQL 

Source
pub trait ToPostgresSQL<'a>: ToSQL<'a, PostgresValue<'a>> {
    // Provided method
    fn to_pg_sql(&self) -> PostgresSQL<'a> { ... }
}

Provided Methods§

Source

fn to_pg_sql(&self) -> PostgresSQL<'a>

Implementors§

Source§

impl<'a, T: ToSQL<'a, PostgresValue<'a>>> ToPostgresSQL<'a> for T