| 5 | #[derive(Deserialize, Serialize, Debug, Clone, PartialEq, Eq, Hash)] |
| 6 | #[serde(rename_all = "lowercase")] |
| 7 | pub enum ExecutorName { |
| 8 | Valgrind, |
| 9 | WallTime, |
| 10 | Memory, |
| 11 | } |
| 12 | |
| 13 | impl fmt::Display for ExecutorName { |
| 14 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { |
nothing calls this directly
no outgoing calls
no test coverage detected