我有一个命令行来搜索文件中的单词。我正在使用 StructOpt 来获取用户想要搜索的单词。
#[derive(Debug, StructOpt)]
pub struct Command {
pub word_to_search: Option<String>,
}
当您编写类似command -a
. 我知道图书馆正在尝试做某事-a
而 中没有-a
,struct
所以我尝试了:command "-a"
但它显示:
error: Found argument '-a' which wasn't expected, or isn't valid in this context
有没有办法使用 StructOpt传递特殊字符-a
并检索信息( )?-a