(&mut self)
| 35 | /// valid to get a mutable reference to it at this time. |
| 36 | #[inline] |
| 37 | pub unsafe fn as_mut<'a>(&mut self) -> &'a mut T { |
| 38 | unsafe { self.0.as_mut() } |
| 39 | } |
| 40 | |
| 41 | /// Returns the underlying `NonNull<T>` wrapper. |
| 42 | #[inline] |
no outgoing calls