Trait sqlx::PgExecutor

source ·
pub trait PgExecutor<'c>: Executor<'c, Database = Postgres> { }
Available on crate feature postgres only.
Expand description

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<'c, T> PgExecutor<'c> for T
where T: Executor<'c, Database = Postgres>,