Typed Queries
Use Select, Insert, Update, and Delete (typed builders) for
compile-time validated queries against your schema.
Features
Select- Type-safe SELECT with compile-time column validationInsert- Type-safe INSERT with.set()APIUpdate- Type-safe UPDATE with validated SET and WHERE columnsDelete- Type-safe DELETE with validated WHERE columnstyped_colfor type-safe column references in WHERE clauses- Compile-time rejection of invalid column names
API Reference
See the typed builder module rustdoc for the full API with code examples covering SELECT, INSERT, UPDATE, and DELETE.