(&self)
| 278 | type Target = T; |
| 279 | |
| 280 | fn deref(&self) -> &T { |
| 281 | unsafe { &*self.ptr.as_raw() } |
| 282 | } |
| 283 | } |
| 284 | impl<T: DeviceCopy> DerefMut for UnifiedBox<T> { |
| 285 | fn deref_mut(&mut self) -> &mut T { |
nothing calls this directly
no test coverage detected