easy_sqlx_utils/
ternary.rs

1// export_macro!
2// 定义宏
3#[macro_export]
4macro_rules! ternary {
5    ($condition:expr, $if_true:expr, $if_false:expr) => {
6        if $condition {
7            $if_true
8        } else {
9            $if_false
10        }
11    };
12}