pub trait IoVec {
    fn pos(&self) -> u64;
fn size(&self) -> usize; }
Expand description

An interface to an IO vector.

Required methods

The read position (the offset) in the file

The number of bytes to read at Self::pos

Implementations on Foreign Types

Implementors