(&self, _py: Python)
| 264 | } |
| 265 | |
| 266 | fn current_generation(&self, _py: Python) -> usize { |
| 267 | self.generation.load(Ordering::Relaxed) |
| 268 | } |
| 269 | |
| 270 | fn increment_generation(&self, py: Python) { |
| 271 | assert_eq!(self.current_borrow_count(py), 0); |
no outgoing calls
no test coverage detected