pub struct Update<T, Set>where
T: Table,
{ /* private fields */ }Expand description
A type-safe UPDATE query builder that validates column names at compile time.
This builder ensures that:
- Only valid columns for the table can be updated
- The table name is derived from the type
- Invalid column references fail to compile
For dynamic (string-based) queries, use UpdateDyn.