(&self)
| 4831 | type Resizable<'a> = PyRwLockWriteGuard<'a, BufferedIO>; |
| 4832 | |
| 4833 | fn try_resizable_opt(&self) -> Option<Self::Resizable<'_>> { |
| 4834 | let w = self.buffer.write(); |
| 4835 | (self.exports.load() == 0).then_some(w) |
| 4836 | } |
| 4837 | } |
| 4838 | |
| 4839 | #[repr(u8)] |
no test coverage detected