Trait io_at::WriteAt
[−]
[src]
pub trait WriteAt {
fn write_at(&self, buf: &[u8], offs: u64) -> Result<usize>;
fn write_all_at(&self, buf: &[u8], offs: u64) -> Result<()> { ... }
}
Required Methods
Provided Methods
Implementors
impl<S: AsRawFd> WriteAt for IoAtRaw<S>impl<T: WriteAt> WriteAt for BlockLimitWrite<T>impl<T: Seek + Write> WriteAt for LockedSeek<T>