Derive Expr methods using a derive proc-macro. These macros are present in the `argus-derive` crate, but the traits are defined in `argus-core`
5 lines
73 B
Rust
5 lines
73 B
Rust
mod bool_expr;
|
|
mod num_expr;
|
|
|
|
pub use bool_expr::*;
|
|
pub use num_expr::*;
|