(&self, py: Python<'_>)
| 332 | /// scanning ``tool_output``. |
| 333 | #[getter] |
| 334 | fn error_kind(&self, py: Python<'_>) -> PyResult<Option<PyObject>> { |
| 335 | self.error_kind_json |
| 336 | .as_deref() |
| 337 | .map(|json| json_string_to_py(py, json)) |
| 338 | .transpose() |
| 339 | } |
| 340 | } |
| 341 | |
| 342 | impl From<RustAgentEvent> for PyAgentEvent { |
nothing calls this directly
no test coverage detected