Trait sqlx::SqliteExecutor

source ·
pub trait SqliteExecutor<'c>: Executor<'c, Database = Sqlite> { }
Available on crate feature sqlite only.
Expand description

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<'c, T> SqliteExecutor<'c> for T
where T: Executor<'c, Database = Sqlite>,