pub trait Sql {
// Required method
fn sql(&self) -> String;
}Expand description
The Sql trait is implemented by all objects that can be used in a query. It provides a single method, sql(), that returns a String.
This is not intended to be implemented by the user.