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

Method column_blob

crates/stdlib/src/_sqlite3.rs:3205–3207  ·  view source on GitHub ↗
(self, pos: c_int)

Source from the content-addressed store, hash-verified

3203 }
3204
3205 fn column_blob(self, pos: c_int) -> *const c_void {
3206 unsafe { sqlite3_column_blob(self.st, pos) }
3207 }
3208
3209 fn column_text(self, pos: c_int) -> *const u8 {
3210 unsafe { sqlite3_column_text(self.st, pos) }

Callers 1

nextMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected