| 212 | } |
| 213 | |
| 214 | pub(crate) unsafe trait CoreArrayProviderInner: CoreArrayProvider { |
| 215 | unsafe fn free(raw: *mut Self::Raw, count: usize, context: &Self::Context); |
| 216 | unsafe fn wrap_raw<'a>(raw: &'a Self::Raw, context: &'a Self::Context) -> Self::Wrapped<'a>; |
| 217 | } |
| 218 | |
| 219 | // TODO: I would really like if we impld Debug for this, but lifetimes are hard! |
| 220 | #[allow(private_bounds)] |
nothing calls this directly
no outgoing calls
no test coverage detected