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

Enum Mode

homeworks_rust/src/exercise.rs:29–36  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

27#[derive(Deserialize, Copy, Clone, Debug)]
28#[serde(rename_all = "lowercase")]
29pub enum Mode {
30 // Indicates that the exercise should be compiled as a binary
31 Compile,
32 // Indicates that the exercise should be compiled as a test harness
33 Test,
34 // Indicates that the exercise should be linted with clippy
35 Clippy,
36}
37
38#[derive(Deserialize)]
39pub struct ExerciseList {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected