[][src]Trait buffered_offset_reader::OffsetWrite

pub trait OffsetWrite {
    fn write_at(&self, buf: &[u8], offset: u64) -> Result<usize>;
}

Required methods

fn write_at(&self, buf: &[u8], offset: u64) -> Result<usize>

Loading content...

Implementations on Foreign Types

impl OffsetWrite for File[src]

fn write_at(&self, buf: &[u8], offset: u64) -> Result<usize>[src]

For convenience, we also expose write_at (for File), because code that needs to read_at might want to write_at.

Uses std::os::unix::prelude::FileExt::write_at and std::os::windows::prelude::FileExt::seek_write.

Loading content...

Implementors

Loading content...