Set planning mode
(mut self, mode: PlanningMode)
| 183 | |
| 184 | /// Set planning mode |
| 185 | pub fn with_planning_mode(mut self, mode: PlanningMode) -> Self { |
| 186 | self.planning_mode = mode; |
| 187 | self |
| 188 | } |
| 189 | |
| 190 | /// Enable planning (shortcut for `with_planning_mode(PlanningMode::Enabled)`) |
| 191 | pub fn with_planning(mut self, enabled: bool) -> Self { |
no outgoing calls