pub trait WriteAtExt {
    type WriteAllAt<'a>: 'a + Future<Output = Result<(), Error>>
    where
        Self: 'a
; fn write_all_at<'a>(&'a self, buf: &'a [u8], pos: u64) -> Self::WriteAllAt<'a>; }
Expand description

Provides extension methods for WriteAt.

Required Associated Types

A future that resolves to the result of Self::write_all_at.

Required Methods

Writes all bytes from buf into this object at pos.

Implementors