(&self, run_id: &str)
| 200 | } |
| 201 | |
| 202 | pub async fn snapshot(&self, run_id: &str) -> Option<RunSnapshot> { |
| 203 | self.runs.read().await.get(run_id).cloned() |
| 204 | } |
| 205 | |
| 206 | pub async fn events(&self, run_id: &str) -> Vec<RunEventRecord> { |
| 207 | self.events |
no test coverage detected