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
39
use core::marker::Unpin;
use core::pin::Pin;
use futures_core::future::Future;
use futures_core::task::{LocalWaker, Poll};
use futures_sink::Sink;
#[derive(Debug)]
#[must_use = "futures do nothing unless polled"]
pub struct Flush<'a, Si: 'a + Unpin + ?Sized> {
    sink: &'a mut Si,
}
impl<Si: Unpin + ?Sized> Unpin for Flush<'_, Si> {}
impl<'a, Si: Sink + Unpin + ?Sized> Flush<'a, Si> {
    pub(super) fn new(sink: &'a mut Si) -> Self {
        Flush { sink }
    }
}
impl<Si: Sink + Unpin + ?Sized> Future for Flush<'_, Si> {
    type Output = Result<(), Si::SinkError>;
    fn poll(
        mut self: Pin<&mut Self>,
        lw: &LocalWaker,
    ) -> Poll<Self::Output> {
        Pin::new(&mut self.sink).poll_flush(lw)
    }
}