mirror of
https://github.com/clap-rs/clap
synced 2025-03-04 23:37:32 +00:00
15 lines
506 B
Text
15 lines
506 B
Text
error[E0277]: the trait bound `SubCmd: clap::Args` is not satisfied
|
|
--> $DIR/enum_variant_not_args.rs:3:9
|
|
|
|
|
3 | Sub(SubCmd),
|
|
| ^^^^^^ the trait `clap::Args` is not implemented for `SubCmd`
|
|
|
|
|
= note: required by `augment_args`
|
|
|
|
error[E0277]: the trait bound `SubCmd: clap::Args` is not satisfied
|
|
--> $DIR/enum_variant_not_args.rs:3:9
|
|
|
|
|
3 | Sub(SubCmd),
|
|
| ^^^^^^ the trait `clap::Args` is not implemented for `SubCmd`
|
|
|
|
|
= note: required by `augment_args_for_update`
|