mirror of
https://github.com/clap-rs/clap
synced 2024-12-14 14:52:33 +00:00
11 lines
491 B
Text
11 lines
491 B
Text
error: default_value is meaningless for bool
|
|
--> $DIR/bool_default_value.rs:14:19
|
|
|
|
|
14 | #[clap(short, default_value = true)]
|
|
| ^^^^^^^^^^^^^
|
|
|
|
error[E0277]: the trait bound `Opt: std::convert::From<clap::parse::matches::arg_matches::ArgMatches>` is not satisfied
|
|
--> $DIR/bool_default_value.rs:11:10
|
|
|
|
|
11 | #[derive(Clap, Debug)]
|
|
| ^^^^ the trait `std::convert::From<clap::parse::matches::arg_matches::ArgMatches>` is not implemented for `Opt`
|