MCPcopy Index your code
hub / github.com/RustPython/RustPython / step

Method step

crates/stdlib/src/_sqlite3.rs:3040–3042  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

3038
3039 impl SqliteStatementRaw {
3040 fn step(self) -> c_int {
3041 unsafe { sqlite3_step(self.st) }
3042 }
3043
3044 fn step_row_else_done(self, vm: &VirtualMachine) -> PyResult<bool> {
3045 let ret = self.step();

Callers 2

executeMethod · 0.45
step_row_else_doneMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected