1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
use futures_core::future::Future;
use futures_core::task::{self, Poll};
use std::io;
use std::marker::Unpin;
use std::pin::PinMut;
use futures_io::AsyncWrite;
#[derive(Debug)]
pub struct Flush<'a, W: ?Sized + 'a> {
writer: &'a mut W,
}
impl<W: ?Sized> Unpin for Flush<'_, W> {}
impl<'a, W: AsyncWrite + ?Sized> Flush<'a, W> {
pub(super) fn new(writer: &'a mut W) -> Self {
Flush { writer }
}
}
impl<W> Future for Flush<'_, W>
where W: AsyncWrite + ?Sized,
{
type Output = io::Result<()>;
fn poll(mut self: PinMut<Self>, cx: &mut task::Context) -> Poll<Self::Output> {
self.writer.poll_flush(cx)
}
}