Trait io_at::WriteAt [] [src]

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

    fn write_all_at(&mut self, buf: &[u8], offs: u64) -> Result<()> { ... }
}

Write data at an offset

Required Methods

Provided Methods

Implementors