| 219 | // TODO: I would really like if we impld Debug for this, but lifetimes are hard! |
| 220 | #[allow(private_bounds)] |
| 221 | pub struct Array<P: CoreArrayProviderInner> { |
| 222 | contents: *mut P::Raw, |
| 223 | count: usize, |
| 224 | context: P::Context, |
| 225 | } |
| 226 | |
| 227 | #[allow(private_bounds)] |
| 228 | impl<P: CoreArrayProviderInner> Array<P> { |
no outgoing calls
no test coverage detected