(&self)
| 256 | |
| 257 | impl<T: DeviceCopy> Borrow<T> for UnifiedBox<T> { |
| 258 | fn borrow(&self) -> &T { |
| 259 | &**self |
| 260 | } |
| 261 | } |
| 262 | impl<T: DeviceCopy> BorrowMut<T> for UnifiedBox<T> { |
| 263 | fn borrow_mut(&mut self) -> &mut T { |
no outgoing calls
no test coverage detected