pub fn set<Q: HasSet>(assignment: impl IntoExpr) -> impl Mod<Q>Expand description
One assignment, written out: set(quote("a").eq(arg(1))).
A whole expression rather than a column/value pair, because SQLite’s
multi-column form (a, b) = (SELECT x, y FROM …) is one assignment with a row on
each side.