Check if cursor is valid without retaining the lock. Use this when you only need to verify the cursor state but don't need to modify it.
(&self, vm: &VirtualMachine)
| 1685 | /// Check if cursor is valid without retaining the lock. |
| 1686 | /// Use this when you only need to verify the cursor state but don't need to modify it. |
| 1687 | fn check_cursor_valid(&self, vm: &VirtualMachine) -> PyResult<()> { |
| 1688 | let guard = self.inner.lock(); |
| 1689 | Self::check_cursor_state(guard.as_ref(), vm) |
| 1690 | } |
| 1691 | |
| 1692 | #[pymethod] |
| 1693 | fn execute( |
no test coverage detected