1use crate::Driver;
2use std::fmt::Debug;
3
4pub trait BindValue:
5 for<'q> sqlx::Encode<'q, Driver> + Debug + sqlx::Type<Driver> + Send + Sync + 'static
6{
7}
8
9impl<T> BindValue for T where
10 T: for<'q> sqlx::Encode<'q, Driver> + Debug + sqlx::Type<Driver> + Send + Sync + 'static
11{
12}