Macro fallback

Source
macro_rules! fallback {
    ({} $($default:tt)*) => { ... };
    ({$($value:tt)+} $($default:tt)*) => { ... };
}