Adds one planning step that reports the planner is exhausted.
(mut self)
| 392 | |
| 393 | /// Adds one planning step that reports the planner is exhausted. |
| 394 | pub(crate) fn return_none(mut self) -> Self { |
| 395 | self.steps.push(PlannerStep::None); |
| 396 | self |
| 397 | } |
| 398 | |
| 399 | /// Adds one planning step that fails during CPU planning. |
| 400 | pub(crate) fn return_error(mut self, message: impl Into<String>) -> Self { |
no test coverage detected