taitan-orm-parser 0.1.12

Next Generation ORM based on sqlx
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod op;
mod arithmetic;
mod comparison_op;
mod match_op;
mod logic_op;
mod list_op;
mod paren;
mod connect;

pub use comparison_op::CompareOp;
pub use logic_op::LogicOp;
pub use match_op::MatchOp;
pub use arithmetic::ArithmeticOp;
pub use arithmetic::ArithmeticUnaryOp;
pub use list_op::ListInOp;
pub use op::Operator;
pub use paren::Paren;
pub use connect::ConnectOp;