(self, byte: &mut u8, offset: c_int)
| 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) |