drizzle-core 0.1.13

A type-safe SQL query builder for Rust
Documentation
1
2
3
4
5
//! Common table expression (CTE) support.
//!
//! CTE construction is exposed through builder APIs (e.g. `SelectBuilder::into_cte()`),
//! which return a typed CTE view with field access. This module is intentionally
//! light to avoid duplicating builder logic while still documenting the surface.