mirror of
https://github.com/clap-rs/clap
synced 2025-01-24 02:15:02 +00:00
11 lines
507 B
Text
11 lines
507 B
Text
error: methods in attributes are not allowed for subcommand
|
|
--> $DIR/subcommand_and_methods.rs:16:12
|
|
|
|
|
16 | #[clap(subcommand, long)]
|
|
| ^^^^^^^^^^
|
|
|
|
error[E0277]: the trait bound `MakeCookie: std::convert::From<clap::parse::matches::arg_matches::ArgMatches>` is not satisfied
|
|
--> $DIR/subcommand_and_methods.rs:11:10
|
|
|
|
|
11 | #[derive(Clap, Debug)]
|
|
| ^^^^ the trait `std::convert::From<clap::parse::matches::arg_matches::ArgMatches>` is not implemented for `MakeCookie`
|