# Safety This call will make the object live forever.
(&self)
| 1659 | /// # Safety |
| 1660 | /// This call will make the object live forever. |
| 1661 | pub(crate) unsafe fn mark_intern(&self) { |
| 1662 | self.0.ref_count.leak(); |
| 1663 | } |
| 1664 | |
| 1665 | pub(crate) fn is_interned(&self) -> bool { |
| 1666 | self.0.ref_count.is_leaked() |