(&self, f: &mut std::fmt::Formatter<'_>)
| 32 | |
| 33 | impl Display for RunnerMode { |
| 34 | fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { |
| 35 | match self { |
| 36 | #[allow(deprecated)] |
| 37 | RunnerMode::Instrumentation => write!(f, "instrumentation"), |
| 38 | RunnerMode::Simulation => write!(f, "simulation"), |
| 39 | RunnerMode::Walltime => write!(f, "walltime"), |
| 40 | #[cfg(target_os = "linux")] |
| 41 | RunnerMode::Memory => write!(f, "memory"), |
| 42 | } |
| 43 | } |
| 44 | } |
| 45 | |
| 46 | pub const EXECUTOR_TARGET: &str = "executor"; |
nothing calls this directly
no outgoing calls
no test coverage detected