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
use pin_project::pin_project;
use std::task::{Context, Poll};
use std::{future::Future, pin::Pin};
use crate::{client::ClientHandle, error::Result, pool::Pool};
#[pin_project]
pub struct GetHandle {
#[pin]
pool: Pool,
}
impl GetHandle {
pub(crate) fn new(pool: &Pool) -> Self {
Self { pool: pool.clone() }
}
}
impl Future for GetHandle {
type Output = Result<ClientHandle>;
fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
self.project().pool.poll(cx)
}
}