(value: &Bound<'_, PyAny>)
| 6222 | } |
| 6223 | |
| 6224 | fn py_any_to_json(value: &Bound<'_, PyAny>) -> PyResult<String> { |
| 6225 | let json_mod = value.py().import("json")?; |
| 6226 | let json_str = json_mod.call_method1("dumps", (value,))?; |
| 6227 | json_str.extract::<String>() |
| 6228 | } |
| 6229 | |
| 6230 | fn verification_reports_from_value( |
| 6231 | reports: serde_json::Value, |
no outgoing calls
no test coverage detected