(&mut self)
| 683 | impl Drop for AutoAssertNoGc<'_> { |
| 684 | #[inline] |
| 685 | fn drop(&mut self) { |
| 686 | if self.entered { |
| 687 | self.store.unwrap_gc_store_mut().gc_heap.exit_no_gc_scope(); |
| 688 | } |
| 689 | } |
| 690 | } |
| 691 | |
| 692 | /// Used to associate instances with the store. |
nothing calls this directly
no test coverage detected