pub trait ToSqlString {
// Required method
fn to_sql_string<C: ToSqlContext>(&self, context: &C) -> String;
}Expand description
Trait to convert an ast to a string
Required Methods§
Sourcefn to_sql_string<C: ToSqlContext>(&self, context: &C) -> String
fn to_sql_string<C: ToSqlContext>(&self, context: &C) -> String
Convert the given value to String
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".