| 22 | /// This should only be used with [`make_opaque`] |
| 23 | #[repr(transparent)] |
| 24 | pub struct OpaquePtr<'a, T> { |
| 25 | ptr: jlong, |
| 26 | ty: PhantomData<&'a T>, |
| 27 | } |
| 28 | |
| 29 | impl<'a, T> OpaquePtr<'a, T> { |
| 30 | pub(crate) fn from(val: T) -> Self |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…