| 204 | } |
| 205 | |
| 206 | pub trait CoreArrayProvider { |
| 207 | type Raw; |
| 208 | type Context; |
| 209 | type Wrapped<'a> |
| 210 | where |
| 211 | Self: 'a; |
| 212 | } |
| 213 | |
| 214 | pub(crate) unsafe trait CoreArrayProviderInner: CoreArrayProvider { |
| 215 | unsafe fn free(raw: *mut Self::Raw, count: usize, context: &Self::Context); |
nothing calls this directly
no outgoing calls
no test coverage detected