Trait photonio_uring::io::WriteAt
source · pub trait WriteAt {
type WriteAt<'a>: 'a + Future<Output = Result<usize, Error>>
where
Self: 'a;
fn write_at<'a>(&'a self, buf: &'a [u8], pos: u64) -> Self::WriteAt<'a>;
}
Expand description
Writes some bytes into an object at a given position.