Trait photonio_base::io::WriteAt
source · [−]pub trait WriteAt {
type WriteAt<'a>: Future<Output = Result<usize>> + 'a
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.