(&self, _vm: &VirtualMachine)
| 422 | |
| 423 | #[pygetset] |
| 424 | fn pending(&self, _vm: &VirtualMachine) -> bool { |
| 425 | let inner = self.inner.lock(); |
| 426 | !HasOverlappedIoCompleted(&inner.overlapped) |
| 427 | && !matches!(inner.data, OverlappedData::NotStarted) |
| 428 | } |
| 429 | |
| 430 | #[pygetset] |
| 431 | fn error(&self, _vm: &VirtualMachine) -> u32 { |
nothing calls this directly
no test coverage detected