Trait SequentialFileSkip

Source
pub trait SequentialFileSkip {
    // Required method
    fn skip(&mut self, n: u64) -> Status;
}

Required Methods§

Source

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

Implementors§