(&mut self)
| 261 | } |
| 262 | impl<T: DeviceCopy> BorrowMut<T> for UnifiedBox<T> { |
| 263 | fn borrow_mut(&mut self) -> &mut T { |
| 264 | &mut **self |
| 265 | } |
| 266 | } |
| 267 | impl<T: DeviceCopy> AsRef<T> for UnifiedBox<T> { |
| 268 | fn as_ref(&self) -> &T { |
no outgoing calls
no test coverage detected