| 269 | |
| 270 | #[derive(Default)] |
| 271 | struct InstanceEntry { |
| 272 | latest_req: Option<GpuPickRequest>, |
| 273 | latest_res: Option<GpuPickResult>, |
| 274 | } |
| 275 | |
| 276 | static REGISTRY: OnceLock<Mutex<HashMap<u64, InstanceEntry>>> = OnceLock::new(); |
| 277 |
nothing calls this directly
no outgoing calls
no test coverage detected