(&self)
| 111 | /// Caller must ensure no concurrent mutable access. |
| 112 | #[inline(always)] |
| 113 | unsafe fn get(&self) -> *mut T { |
| 114 | self.0.get() |
| 115 | } |
| 116 | } |
| 117 | |
| 118 | // SAFETY: Frame execution is single-threaded. See FrameUnsafeCell doc. |
no outgoing calls
no test coverage detected