(
self,
f: impl FnOnce() -> PyBaseExceptionRef,
)
| 485 | } |
| 486 | |
| 487 | fn ok_or_else( |
| 488 | self, |
| 489 | f: impl FnOnce() -> PyBaseExceptionRef, |
| 490 | ) -> PyResult<flate2::Compression> { |
| 491 | self.0.ok_or_else(f) |
| 492 | } |
| 493 | } |
| 494 | |
| 495 | impl<'a> TryFromBorrowedObject<'a> for Level { |
no outgoing calls
no test coverage detected