(&self, bit: GcBits)
| 1563 | /// Set a GC bit atomically. |
| 1564 | #[inline] |
| 1565 | pub(crate) fn set_gc_bit(&self, bit: GcBits) { |
| 1566 | self.0.gc_bits.fetch_or(bit.bits(), Ordering::Relaxed); |
| 1567 | } |
| 1568 | |
| 1569 | /// Get the GC generation index for this object. |
| 1570 | #[inline] |
no outgoing calls
no test coverage detected