macro_rules! if_option_vec {
    (Option<Vec<String>>, THEN {$then:expr} ELSE {$otherwise:expr}) => { ... };
    (Option<$type:ty>, THEN {$then:expr} ELSE {$otherwise:expr}) => { ... };
}