(&self)
| 189 | } |
| 190 | |
| 191 | pub async fn checkout_instance(&self) -> Option<InstanceHandle> { |
| 192 | let mut inner = self.inner.write().await; |
| 193 | inner.instances.pop_front() |
| 194 | } |
| 195 | |
| 196 | pub async fn checkin_instance(&self, instance_handle: InstanceHandle) { |
| 197 | self.inner |
no test coverage detected