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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
use futures::FutureExt;
use std::future::Future;
use std::pin::Pin;
use std::task::{Context, Poll};
pub mod backoff;
pub use backoff::*;
pub mod condition;
pub use condition::*;
pub mod mvar;
pub use mvar::*;
pub mod signal;
pub use signal::*;
pub fn get_mut_unchecked<T>(arc: &mut std::sync::Arc<T>) -> &mut T {
unsafe { &mut (*(std::sync::Arc::as_ptr(arc) as *mut T)) }
}
#[must_use = "futures do nothing unless you `.await` or poll them"]
pub struct PinBoxFuture<T>(Pin<Box<dyn Future<Output = T> + Send>>);
impl<T> Future for PinBoxFuture<T> {
type Output = T;
#[inline]
fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
self.0.poll_unpin(cx)
}
}
#[inline]
pub fn pinbox<T>(fut: impl Future<Output = T> + Send + 'static) -> PinBoxFuture<T> {
PinBoxFuture(Box::pin(fut))
}