Set graph-level metadata key to a boolean value Exposes core graph.set_metadata for Python tests and configuration
(&mut self, key: String, value: bool)
| 86 | /// Set graph-level metadata key to a boolean value |
| 87 | /// Exposes core graph.set_metadata for Python tests and configuration |
| 88 | fn set_graph_metadata(&mut self, key: String, value: bool) -> PyResult<()> { |
| 89 | self.inner |
| 90 | .graph |
| 91 | .set_metadata(key, serde_json::Value::Bool(value)); |
| 92 | Ok(()) |
| 93 | } |
| 94 | } |
nothing calls this directly
no test coverage detected