Method
read
(&mut self, buf: &mut [u8])
Source from the content-addressed store, hash-verified
| 538 | |
| 539 | impl Read for Tap { |
| 540 | fn read(&mut self, buf: &mut [u8]) -> IoResult<usize> { |
| 541 | self.tap_file.read(buf) |
| 542 | } |
| 543 | } |
| 544 | |
| 545 | impl Write for Tap { |