(self)
| 3296 | |
| 3297 | impl SqliteBlob { |
| 3298 | fn bytes(self) -> c_int { |
| 3299 | unsafe { sqlite3_blob_bytes(self.blob) } |
| 3300 | } |
| 3301 | |
| 3302 | fn write(self, buf: *const c_void, length: c_int, offset: c_int) -> c_int { |
| 3303 | unsafe { sqlite3_blob_write(self.blob, buf, length, offset) } |
no outgoing calls
no test coverage detected