pub trait ArraySql:
Debug
+ ToSql
+ Send
+ Sync {
type Item;
// Required method
fn escape_domain_to_sql(
&self,
ty: &Type,
w: &mut BytesMut,
) -> Result<IsNull, Box<dyn Error + Sync + Send>>;
}