mirror of
https://github.com/clap-rs/clap
synced 2024-12-15 07:12:32 +00:00
11 lines
487 B
Text
11 lines
487 B
Text
error: parser specification must start with identifier
|
|
--> $DIR/parse_literal_spec.rs:14:18
|
|
|
|
|
14 | #[clap(parse("from_str"))]
|
|
| ^^^^^^^^^^
|
|
|
|
error[E0277]: the trait bound `Opt: std::convert::From<clap::parse::matches::arg_matches::ArgMatches>` is not satisfied
|
|
--> $DIR/parse_literal_spec.rs:11:10
|
|
|
|
|
11 | #[derive(Clap, Debug)]
|
|
| ^^^^ the trait `std::convert::From<clap::parse::matches::arg_matches::ArgMatches>` is not implemented for `Opt`
|