(&self)
| 122 | /// Gets the next element in the global linked list of allocated objects. |
| 123 | #[inline(always)] |
| 124 | pub(crate) fn next(&self) -> Option<GcBox> { |
| 125 | self.next.get() |
| 126 | } |
| 127 | |
| 128 | /// Sets the next element in the global linked list of allocated objects. |
| 129 | #[inline(always)] |
no test coverage detected