macro_rules! option_wrap {
    () => { ... };
    (None) => { ... };
    ($($inner:tt)+) => { ... };
}
Expand description

Wrap with option if argument is not None.