首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >如何在StructOpt中使用表示子命令的枚举?

如何在StructOpt中使用表示子命令的枚举?
EN

Stack Overflow用户
提问于 2018-06-04 12:51:33
回答 2查看 3.8K关注 0票数 15

提到"Git" example of StructOpt,我不明白我应该如何使用参数中的数据。

我是Rust的新手,所以我猜这是显而易见的。不幸的是,我能找到的所有枚举示例都只在对象上执行println!,所以我被卡住了。我想我会做一个match,但它不工作。

那么,您如何找到用户传递了哪些命令来运行您的程序呢?

代码语言:javascript
复制
#[macro_use]
extern crate structopt;

use std::path::PathBuf;
use structopt::StructOpt;

#[derive(StructOpt, Debug)]
#[structopt(name = "git", about = "the stupid content tracker")]
enum Git {
    #[structopt(name = "add")]
    Add {
        #[structopt(short = "i")]
        interactive: bool,
        #[structopt(short = "p")]
        patch: bool,
        #[structopt(parse(from_os_str))]
        files: Vec<PathBuf>
    },
    #[structopt(name = "fetch")]
    Fetch {
        #[structopt(long = "dry-run")]
        dry_run: bool,
        #[structopt(long = "all")]
        all: bool,
        repository: Option<String>
    },
    #[structopt(name = "commit")]
    Commit {
        #[structopt(short = "m")]
        message: Option<String>,
        #[structopt(short = "a")]
        all: bool
    }
}

fn main() {
    let opt = Git::from_args();
    println!("{:?}", opt);

    match opt() {
        Git::Add(cmd) => println!("{:?}", cmd.interactive),
        _ => (),
    }
}

编译:

代码语言:javascript
复制
05:42 $ cargo run -- add -i
   Compiling example v0.1.0 (file:///Users/froyer/src/example)
error[E0532]: expected tuple struct/variant, found struct variant `Git::Add`
  --> src/main.rs:41:9
   |
41 |         Git::Add(cmd) => println!("{:?}", cmd.interactive),
   |         ^^^^^^^^ did you mean `Git::Add { /* fields */ }`?

error[E0618]: expected function, found enum variant `opt`
  --> src/main.rs:40:11
   |
37 |     let opt = Git::from_args();
   |         --- `opt` defined here
...
40 |     match opt() {
   |           ^^^^^ not a function
help: `opt` is a unit variant, you need to write it without the parenthesis
   |
40 |     match opt {
   |           ^^^
EN

回答 2

Stack Overflow用户

发布于 2018-06-04 13:08:06

多亏了issue #1 in the structopt repository,我终于明白了它是如何工作的:)

代码语言:javascript
复制
fn main () {
    match Git::from_args() {
        Git::Add { interactive, patch, files } => {
            println!("{:?}", interactive)
        },
        Git::Commit { message, all } => {
            //...
        }
        _ => (),
    }
}
票数 22
EN

Stack Overflow用户

发布于 2020-04-22 03:33:17

我遇到了同样的问题,我想我应该进一步引用@kellpossible的例子:

代码语言:javascript
复制
#[macro_use]
extern crate structopt;

pub use structopt::StructOpt;
use std::path::PathBuf;



#[derive(Debug, StructOpt)]
#[structopt(name = "example", about="how to use struct-opt crate")]
pub struct Opts{

    #[structopt(short = "v",  parse(from_occurrences))]
    verbosity: u8,

    // SUBCOMMANDS
    #[structopt(subcommand)]
    commands: Option<Git>

}


#[derive(StructOpt, Debug)]
#[structopt(name = "git", about = "the stupid content tracker")]
enum Git {
    #[structopt(name = "add")]
    Add (AddOpts),

    #[structopt(name = "fetch")]
    Fetch(FetchOpts),

    #[structopt(name = "commit")]
    Commit(CommitOpts)
}

#[derive(StructOpt, Debug)]
struct AddOpts {
    #[structopt(short = "i")]    
    interactive: bool,

    #[structopt(short = "p")]
    patch: bool,

    #[structopt(parse(from_os_str))]
    files: Vec<PathBuf>
}

#[derive(Debug, StructOpt)]
pub struct FetchOpts {
    #[structopt(long = "dry-run")]
    dry_run: bool,
    #[structopt(long = "all")]
    all: bool,
    repository: Option<String>
}

#[derive(Debug, StructOpt)]
pub struct CommitOpts {
    #[structopt(short = "m")]
    message: Option<String>,
    #[structopt(short = "a")]
    all: bool
}


fn main() {
    println!("Hello subcommands!");    

    let opt = Opts::from_args();
    handle_subcommand(opt);

}

fn handle_subcommand(opt: Opts){
    // handle subcommands
    if let Some(subcommand) = opt.commands{
        match subcommand {
            Git::Add(cfg) => {
                println!("handle Add:  {:?}", cfg);
            },
            Git::Commit(cfg) => {
                println!("handle Commit: {:?}", cfg);
            },
            Git::Fetch(cfg) => {
                println!("handle Fetch: {:?}", cfg);
            },

        }
    }
}

希望这会有所帮助,但如果有人知道更好的方法会很感兴趣。

票数 7
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/50673567

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档