A mutably borrowed reference to a leaked value.
| 451 | |
| 452 | /// A mutably borrowed reference to a leaked value. |
| 453 | pub struct PyLeakedRefMut<'a, T: 'a + ?Sized> { |
| 454 | _borrow: BorrowPyShared<'a>, |
| 455 | data: &'a mut T, |
| 456 | } |
| 457 | |
| 458 | impl<'a, T: ?Sized> Deref for PyLeakedRefMut<'a, T> { |
| 459 | type Target = T; |
nothing calls this directly
no outgoing calls
no test coverage detected