rust-ef-macros 1.6.0

Procedural macros for Rust Entity Framework
Documentation
1
2
3
4
5
6
7
8
9
10
//! `syn::Parse` implementations for the `linq!` macro input grammar.
//!
//! Module structure:
//! - `input.rs` — `LinqInput` dispatch (Forms A/B/C) and query parsing
//! - `clauses.rs` — `LinqClause` dispatch and simple clause parsers
//! - `complex.rs` — window, CTE/with, and having AST conversion

mod clauses;
mod complex;
mod input;