derive_sql/structs/
order.rs

1//! Scaffoling for handling ordering statement
2use super::*;
3
4mod condition; pub use condition::{Operator, Condition};
5mod and; pub use and::{And};
6mod none; pub use none::{None};
7