Trait PgExecutor

pub trait PgExecutor<'c>: Executor<'c, Database = Postgres> { }
Expand description

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

§

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