我使用the Clap crate来解析命令行参数。我定义了一个子命令ls
来列出文件。Clap还定义了一个help
子命令来显示有关应用程序及其使用情况的信息。
如果没有提供任何命令,则不会显示任何内容,但我希望应用程序在这种情况下显示帮助。
我试过这段代码,看起来很简单,但它不起作用:
extern crate clap;
use clap::{App, SubCommand};
fn main() {
let mut app = App::new("myapp")
.version("0.0.1")
.about("My first CLI APP")
.subcommand(SubCommand::with_name("ls").about("List anything"));
let matches = app.get_matches();
if let Some(cmd) = matches.subcommand_name() {
match cmd {
"ls" => println!("List something here"),
_ => eprintln!("unknown command"),
}
} else {
app.print_long_help();
}
}
我得到一个错误,app
在move之后被使用:
error[E0382]: use of moved value: `app`
--> src/main.rs:18:9
|
10 | let matches = app.get_matches();
| --- value moved here
...
18 | app.print_long_help();
| ^^^ value used here after move
|
= note: move occurs because `app` has type `clap::App<'_, '_>`, which does not implement the `Copy` trait
阅读Clap的文档,我发现get_matches()
中返回的clap::ArgMatches
有一个方法usage
,它返回使用部分的字符串,但不幸的是,只有这一部分,没有其他部分。
3条答案
按热度按时间hwamh0ep1#
使用
clap::AppSettings::ArgRequiredElseHelp
:参见:
z9zf31ra2#
您也可以在命令本身上使用
Command::arg_required_else_help
作为bool
。7rfyedvj3#
如果你使用的是derive而不是builder API你可以设置shepmaster提到的标志,如下所示:
另见:https://docs.rs/clap/latest/clap/_derive/_tutorial/index.html#configuring-the-parser