Extension to [`rusqlite::ToSql`] trait which also includes [`Send`] and [`Sync`].
| 27 | /// Extension to [`rusqlite::ToSql`] trait |
| 28 | /// which also includes [`Send`] and [`Sync`]. |
| 29 | pub trait ToSql: rusqlite::ToSql + Send + Sync {} |
| 30 | |
| 31 | impl<T: rusqlite::ToSql + Send + Sync> ToSql for T {} |
| 32 |
nothing calls this directly
no outgoing calls
no test coverage detected