(&self, f: &mut fmt::Formatter<'_>)
| 12 | |
| 13 | impl fmt::Display for ExecutorName { |
| 14 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { |
| 15 | match self { |
| 16 | ExecutorName::Valgrind => write!(f, "valgrind"), |
| 17 | ExecutorName::WallTime => write!(f, "walltime"), |
| 18 | ExecutorName::Memory => write!(f, "memory"), |
| 19 | } |
| 20 | } |
| 21 | } |
| 22 | |
| 23 | impl ExecutorName { |
nothing calls this directly
no outgoing calls
no test coverage detected