pub trait SeekForward {
// Required method
fn seek_forward(&mut self, offset: u64) -> IOResult<()>;
}
Expand description
Trait that can only seek further forwards
pub trait SeekForward {
// Required method
fn seek_forward(&mut self, offset: u64) -> IOResult<()>;
}
Trait that can only seek further forwards