Human-readable label for this executor.
(&self)
| 23 | impl ExecutorName { |
| 24 | /// Human-readable label for this executor. |
| 25 | pub fn label(&self) -> &'static str { |
| 26 | match self { |
| 27 | ExecutorName::Valgrind => "CPU Simulation", |
| 28 | ExecutorName::WallTime => "Walltime", |
| 29 | ExecutorName::Memory => "Memory", |
| 30 | } |
| 31 | } |
| 32 | |
| 33 | /// Icon for this executor. |
| 34 | pub fn icon(&self) -> Icon { |
no outgoing calls
no test coverage detected