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
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 Close<'a, Si: 'a + Unpin + ?Sized> {
sink: &'a mut Si,
}
impl<'a, Si: Sink + Unpin + ?Sized> Close<'a, Si> {
pub(super) fn new(sink: &'a mut Si) -> Self {
Close { sink }
}
}
impl<Si: Sink + Unpin + ?Sized> Future for Close<'_, Si> {
type Output = Result<(), Si::SinkError>;
fn poll(
mut self: Pin<&mut Self>,
lw: &LocalWaker,
) -> Poll<Self::Output> {
Pin::new(&mut self.sink).poll_close(lw)
}
}