pub trait ToSqlParam: Send + Sync {
// Required method
fn as_any(&self) -> &(dyn Any + Send + Sync + 'static);
}Expand description
Trait for values that can be bound as SQL query parameters.
pub trait ToSqlParam: Send + Sync {
// Required method
fn as_any(&self) -> &(dyn Any + Send + Sync + 'static);
}Trait for values that can be bound as SQL query parameters.