pub trait ColumnValue: Send + Sync {
// Required methods
fn to_sql_string(&self) -> String;
fn column_type(&self) -> &'static str;
}
pub trait ColumnValue: Send + Sync {
// Required methods
fn to_sql_string(&self) -> String;
fn column_type(&self) -> &'static str;
}