1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
use bpaf::*;
#[derive(Debug, Clone)]
enum Baz {
Foo,
Bar,
FooBar,
}
impl FromOsStr for Baz {
type Out = Self;
fn from_os_str(s: std::ffi::OsString) -> Result<Self, String>
where
Self: Sized,
{
let s = s
.to_str()
.ok_or_else(|| format!("{} is not a valid utf8", s.to_string_lossy()))?;
match s {
"foo" => Ok(Baz::Foo),
"bar" => Ok(Baz::Bar),
"foobar" => Ok(Baz::FooBar),
_ => Err("Expected foo|bar|foobar".to_string()),
}
}
}
fn main() {
let opt = long("baz")
.short('b')
.help("choose between foo, bar or foobar")
.argument::<Baz>("CMD")
.to_options()
.run();
println!("{:#?}", opt);
}