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