(t: &mut T)
| 16 | /// Convert a `&mut T` into a `*mut T` without using an `as`. |
| 17 | #[inline] |
| 18 | pub(crate) fn as_mut_ptr<T>(t: &mut T) -> *mut T { |
| 19 | t |
| 20 | } |
| 21 | |
| 22 | /// Convert an `Option<&T>` into a possibly-null `*const T`. |
| 23 | #[inline] |
no outgoing calls
no test coverage detected