Trait IntoSqlValue
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§
§impl IntoSqlValue for &str
impl IntoSqlValue for &str
fn into_sql_value(self) -> SqlValue
§impl IntoSqlValue for DateTime<Utc>
impl IntoSqlValue for DateTime<Utc>
fn into_sql_value(self) -> SqlValue
§impl IntoSqlValue for String
impl IntoSqlValue for String
fn into_sql_value(self) -> SqlValue
§impl IntoSqlValue for Vec<f32>
impl IntoSqlValue for Vec<f32>
fn into_sql_value(self) -> SqlValue
§impl IntoSqlValue for bool
impl IntoSqlValue for bool
fn into_sql_value(self) -> SqlValue
§impl IntoSqlValue for f64
impl IntoSqlValue for f64
fn into_sql_value(self) -> SqlValue
§impl IntoSqlValue for i64
impl IntoSqlValue for i64
fn into_sql_value(self) -> SqlValue
Implementors§
impl IntoSqlValue for Decimal
Available on crate feature
decimal-rust-decimal only.