(&mut self)
| 274 | /// returning in-between. |
| 275 | #[inline] |
| 276 | pub fn collect_debt(&mut self) { |
| 277 | unsafe { |
| 278 | self.context.do_collection(&self.root, 0.0, None); |
| 279 | } |
| 280 | } |
| 281 | |
| 282 | /// Run only the *marking* part of incremental garbage collection until allocation debt is |
| 283 | /// <= 0.0. |
no test coverage detected