29

我正在使用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我收到一个在移动后使用的错误:

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 的文档,我发现clap::ArgMatches返回的 thatget_matches()有一个方法usage可以返回用于使用部分的字符串,但不幸的是,只有这部分,没有别的。

4

1 回答 1

40

使用clap::AppSettings::ArgRequiredElseHelp

App::new("myprog")
    .setting(AppSettings::ArgRequiredElseHelp)

也可以看看:

于 2018-03-15T02:35:23.447 回答