(&mut self)
| 291 | |
| 292 | impl<'a> Drop for BorrowPyShared<'a> { |
| 293 | fn drop(&mut self) { |
| 294 | self.state.decrease_borrow_count(self.py); |
| 295 | } |
| 296 | } |
| 297 | |
| 298 | /// An immutable reference to `PySharedRefCell` value, not bound to lifetime. |
nothing calls this directly
no test coverage detected