MCPcopy Create free account
hub / github.com/ExtropyIO/SolanaBootcamp / Args

Class Args

homeworks_rust/src/main.rs:31–40  ·  view source on GitHub ↗

Rustlings is a collection of small exercises to get you used to writing and reading Rust code

Source from the content-addressed store, hash-verified

29#[derive(FromArgs, PartialEq, Debug)]
30/// Rustlings is a collection of small exercises to get you used to writing and reading Rust code
31struct 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)]

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected