pub fn quote(parts: impl IntoIdent) -> Expr
A quoted identifier: quote("age") gives "age", quote(("users", "id")) gives "users"."id".
quote("age")
"age"
quote(("users", "id"))
"users"."id"