Files
clap/tests/derive_ui/bool_value_enum.stderr
renovate[bot] e2d2d25094 chore(deps): Update Rust Stable to v1.93 (#6231)
* 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>
2026-01-23 17:18:55 +00:00

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 {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^