unwind-context 0.2.2

Macro to add colored panic context to your functions
Documentation
1
2
3
4
5
6
7
8
9
10
#[doc(hidden)]
#[macro_export]
macro_rules! expr_or_default_expr {
    (, $default:expr) => {
        $default
    };
    ($expr:expr, $default:expr) => {
        $expr
    };
}