2015-04-14 02:18:50 +00:00
|
|
|
// De-duplication macro used in src/app.rs
|
2015-04-10 15:40:08 +00:00
|
|
|
macro_rules! get_help {
|
|
|
|
($opt:ident) => {
|
|
|
|
if let Some(h) = $opt.help {
|
|
|
|
format!("{}{}", h,
|
|
|
|
if let Some(ref pv) = $opt.possible_vals {
|
|
|
|
let mut pv_s = pv.iter().fold(String::with_capacity(50), |acc, name| acc + &format!(" {}",name)[..]);
|
|
|
|
pv_s.shrink_to_fit();
|
|
|
|
format!(" [values:{}]", &pv_s[..])
|
|
|
|
}else{"".to_owned()})
|
|
|
|
} else {
|
|
|
|
" ".to_owned()
|
|
|
|
}
|
|
|
|
};
|
2015-04-13 04:37:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Thanks to bluss and flan3002 in #rust IRC
|
2015-04-14 02:18:50 +00:00
|
|
|
//
|
|
|
|
// Helps with rightward drift when iterating over something and matching each item.
|
2015-04-13 04:37:59 +00:00
|
|
|
macro_rules! for_match {
|
|
|
|
($it:ident, $($p:pat => $($e:expr);+),*) => {
|
|
|
|
for i in $it {
|
|
|
|
match i {
|
|
|
|
$(
|
|
|
|
$p => { $($e)+ }
|
|
|
|
)*
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2015-04-10 15:40:08 +00:00
|
|
|
}
|