拍手的ArgMatches类型是否可以匹配?

时间:2019-07-06 21:14:38

标签: rust clap

是否可以像拍手的ArgMatches类型匹配

match matches {
   "arg1" => doSomething(),
   "arg2" => doSomethingElse(),
   // ...
}

或者必须使用文档中描述的语法

if matches.is_present("arg1") {
    doSomething();
} else if matches.is_present("arg2") {
    doSomethingElse();
}

我发现第二种形式甚至比案例陈述要复杂得多。

0 个答案:

没有答案