(&mut self, value: Option<String>)
| 5413 | |
| 5414 | #[setter] |
| 5415 | fn set_planning_mode(&mut self, value: Option<String>) -> PyResult<()> { |
| 5416 | if let Some(ref mode) = value { |
| 5417 | parse_planning_mode(mode)?; |
| 5418 | } |
| 5419 | self.planning_mode = value; |
| 5420 | Ok(()) |
| 5421 | } |
| 5422 | |
| 5423 | /// Legacy planning shortcut. None = auto, True = force, False = disabled. |
| 5424 | #[getter] |
nothing calls this directly
no test coverage detected