orm_rs/nodes/
mod.rs

1mod node_where;
2
3pub use node_where::NodeWhere;
4
5
6// #[derive(Debug)]
7// pub struct NodeGroup {
8// }
9// impl NodeGroup {
10//     pub fn new() -> Self {
11//         Self {
12//         }
13//     }
14// }
15// #[derive(Debug)]
16// pub struct NodeHaving {
17// }
18// impl NodeHaving {
19//     pub fn new() -> Self {
20//         Self {
21//         }
22//     }
23// }
24//
25// #[allow(dead_code)]
26// pub struct NodeCount {
27//     distinct: bool
28// }
29// impl NodeCount {
30//     pub fn new(distinct: bool) -> Self {
31//         Self {
32//             distinct
33//         }
34//     }
35// }
36#[derive(Debug)]
37pub enum NodesType {
38    Where(NodeWhere),
39    // Group(NodeGroup),
40    // Having(NodeHaving),
41}