Trait sqlx::AnyExecutor

source ·
pub trait AnyExecutor<'c>: Executor<'c, Database = Any> { }
Available on crate feature any only.
Expand description

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<'c, T> AnyExecutor<'c> for T
where T: Executor<'c, Database = Any>,