mirror of
https://github.com/clap-rs/clap
synced 2024-12-14 14:52:33 +00:00
b190a6a817
This reduces the need for us to have `clap` as a dependency in `clap_derive`, preparing the way to fix #15.
20 lines
859 B
Text
20 lines
859 B
Text
error: `#[derive(Parser)]` only supports non-tuple structs and enums
|
|
--> $DIR/tuple_struct.rs:11:10
|
|
|
|
|
11 | #[derive(Parser, Debug)]
|
|
| ^^^^^^
|
|
|
|
|
= note: this error originates in the derive macro `Parser` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
|
|
error[E0599]: no function or associated item named `parse` found for struct `Opt` in the current scope
|
|
--> $DIR/tuple_struct.rs:16:20
|
|
|
|
|
13 | struct Opt(u32);
|
|
| ---------------- function or associated item `parse` not found for this
|
|
...
|
|
16 | let opt = Opt::parse();
|
|
| ^^^^^ function or associated item not found in `Opt`
|
|
|
|
|
= help: items from traits can only be used if the trait is implemented and in scope
|
|
= note: the following trait defines an item `parse`, perhaps you need to implement it:
|
|
candidate #1: `Parser`
|