| 27 | #[derive(Deserialize, Copy, Clone, Debug)] |
| 28 | #[serde(rename_all = "lowercase")] |
| 29 | pub 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)] |
| 39 | pub struct ExerciseList { |
nothing calls this directly
no outgoing calls
no test coverage detected