Rustlings is a collection of small exercises to get you used to writing and reading Rust code
| 29 | #[derive(FromArgs, PartialEq, Debug)] |
| 30 | /// Rustlings is a collection of small exercises to get you used to writing and reading Rust code |
| 31 | struct Args { |
| 32 | /// show outputs from the test exercises |
| 33 | #[argh(switch)] |
| 34 | nocapture: bool, |
| 35 | /// show the executable version |
| 36 | #[argh(switch, short = 'v')] |
| 37 | version: bool, |
| 38 | #[argh(subcommand)] |
| 39 | nested: Option<Subcommands>, |
| 40 | } |
| 41 | |
| 42 | #[derive(FromArgs, PartialEq, Debug)] |
| 43 | #[argh(subcommand)] |
nothing calls this directly
no outgoing calls
no test coverage detected