pub trait SequentialFileSkip {
// Required method
fn skip(&mut self, n: u64) -> Status;
}
Required Methods§
Sourcefn skip(&mut self, n: u64) -> Status
fn skip(&mut self, n: u64) -> Status
| Skip “n” bytes from the file. This is | guaranteed to be no slower that reading the | same data, but may be faster. | | If end of file is reached, skipping will stop | at the end of the file, and Skip will return | OK. | | REQUIRES: External synchronization