mirror of
https://github.com/clap-rs/clap.git
synced 2026-01-25 05:26:17 +00:00
* style: Make clippy happy * chore(deps): Update Rust Stable to v1.93 --------- Co-authored-by: Ed Page <eopage@gmail.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
12 lines
450 B
Plaintext
12 lines
450 B
Plaintext
error[E0277]: the trait bound `bool: ValueEnum` is not satisfied
|
|
--> tests/derive_ui/bool_value_enum.rs:6:30
|
|
|
|
|
6 | #[arg(short, value_enum, default_value_t)]
|
|
| ^^^^^^^^^^^^^^^ the trait `ValueEnum` is not implemented for `bool`
|
|
|
|
|
help: the trait `ValueEnum` is implemented for `ColorChoice`
|
|
--> clap_builder/src/util/color.rs
|
|
|
|
|
| impl ValueEnum for ColorChoice {
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|