pub fn build<E: Expression + ?Sized>(
dialect: &dyn Dialect,
e: &E,
) -> Result<(String, Vec<Value>)>Expand description
Render an expression to SQL and arguments, numbering placeholders from 1.
This is what a query’s build() calls, and the only place a recorded failure
becomes a Result.