Trait io_at::ReadAt [] [src]

pub trait ReadAt {
    fn read_at(&self, buf: &mut [u8], offs: u64) -> Result<usize>;
}

Read data at an offset

Note that compared to Read::read, ReadAt::read_at does not borrow T mutably as it does not need to modify an internal cursor.

Required Methods

Implementors