(&self)
| 77 | |
| 78 | impl PinMode { |
| 79 | pub fn to_str(&self) -> &'static str { |
| 80 | match self { |
| 81 | PinMode::None => "none", |
| 82 | PinMode::TaskSet => "taskset", |
| 83 | PinMode::OpenMP => "omp", |
| 84 | } |
| 85 | } |
| 86 | } |
| 87 | |
| 88 | /// Description of a task that is ready to be started |
no outgoing calls
no test coverage detected