pub trait IntoSqlValue {
// Required method
fn into_sql_value(self) -> JsonValue;
}
Expand description
A generic interface for converting into SQL values.
Required Methods§
Sourcefn into_sql_value(self) -> JsonValue
fn into_sql_value(self) -> JsonValue
Converts self
to a SQL value.