Searched refs:WriteBuf (Results 1 – 2 of 2) sorted by relevance
/external/rust/crates/tokio/src/io/util/ |
D | write_buf.rs | 15 pub struct WriteBuf<'a, W, B> { 25 pub(crate) fn write_buf<'a, W, B>(writer: &'a mut W, buf: &'a mut B) -> WriteBuf<'a, W, B> in write_buf() 30 WriteBuf { in write_buf() 37 impl<W, B> Future for WriteBuf<'_, W, B> implementation
|
D | async_write_ext.rs | 5 use crate::io::util::write_buf::{write_buf, WriteBuf}; 228 fn write_buf<'a, B>(&'a mut self, src: &'a mut B) -> WriteBuf<'a, Self, B>
|