pub trait IntoSqlValue {
// Required method
fn into_sql_value(self) -> SqlValue;
}Required Methods§
fn into_sql_value(self) -> SqlValue
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".
Implementations on Foreign Types§
Source§impl IntoSqlValue for &str
impl IntoSqlValue for &str
fn into_sql_value(self) -> SqlValue
Source§impl IntoSqlValue for DateTime<Utc>
impl IntoSqlValue for DateTime<Utc>
fn into_sql_value(self) -> SqlValue
Source§impl IntoSqlValue for Decimal
Available on crate features decimal-bigdecimal or decimal-rust-decimal only.
impl IntoSqlValue for Decimal
Available on crate features
decimal-bigdecimal or decimal-rust-decimal only.