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

Method read_single

crates/stdlib/src/_sqlite3.rs:3310–3312  ·  view source on GitHub ↗
(self, byte: &mut u8, offset: c_int)

Source from the content-addressed store, hash-verified

3308 }
3309
3310 fn read_single(self, byte: &mut u8, offset: c_int) -> c_int {
3311 self.read(byte as *mut u8 as *mut _, 1, offset)
3312 }
3313
3314 fn write_single(self, byte: u8, offset: c_int) -> c_int {
3315 self.write(&byte as *const u8 as *const _, 1, offset)

Callers 1

subscriptMethod · 0.80

Calls 1

readMethod · 0.45

Tested by

no test coverage detected