(&self)
| 1569 | /// Get the GC generation index for this object. |
| 1570 | #[inline] |
| 1571 | pub(crate) fn gc_generation(&self) -> u8 { |
| 1572 | self.0.gc_generation.load(Ordering::Relaxed) |
| 1573 | } |
| 1574 | |
| 1575 | /// Set the GC generation index for this object. |
| 1576 | /// Must only be called while holding the generation list's write lock. |
no test coverage detected