(&self)
| 223 | |
| 224 | #[inline] |
| 225 | fn collection_context(&self) -> &Collection { |
| 226 | // SAFETY: `Collection` is `repr(transparent)` |
| 227 | unsafe { mem::transmute::<&Self, &Collection>(self) } |
| 228 | } |
| 229 | |
| 230 | #[inline] |
| 231 | pub(crate) unsafe fn finalization_context<'gc>(&self) -> &Finalization<'gc> { |