(&self)
| 28 | /// valid to get a shared reference to it at this time. |
| 29 | #[inline] |
| 30 | pub unsafe fn as_ref<'a>(&self) -> &'a T { |
| 31 | unsafe { self.0.as_ref() } |
| 32 | } |
| 33 | |
| 34 | /// Unsafely assert that this is a pointer to valid contents and it's also |
| 35 | /// valid to get a mutable reference to it at this time. |
no outgoing calls