rust 当没有提供命令时,Clap是否有直接的方法来显示帮助?

v2g6jxz6  于 2023-03-30  发布在  其他
关注(0)|答案(3)|浏览(131)

我使用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,它返回使用部分的字符串,但不幸的是,只有这一部分,没有其他部分。

hwamh0ep

hwamh0ep1#

使用clap::AppSettings::ArgRequiredElseHelp

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

参见:

z9zf31ra

z9zf31ra2#

您也可以在命令本身上使用Command::arg_required_else_help作为bool

Command::new("rule").arg_required_else_help(true)
7rfyedvj

7rfyedvj3#

如果你使用的是derive而不是builder API你可以设置shepmaster提到的标志,如下所示:

#[command(arg_required_else_help = true)]
pub struct Cli {

    #[clap(short)]
    pub init: bool,

另见:https://docs.rs/clap/latest/clap/_derive/_tutorial/index.html#configuring-the-parser

相关问题