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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
use std::fmt::Display;
use futures::Future;
use log::LogLevel;
use void::Void;
use log_error::LogError;
use until::Until;
use infallible::Infallible;
use finally::Finally;
use BoxFuture;
pub trait FutureExt: Future + Sized {
fn into_boxed(self) -> BoxFuture<Self::Item, Self::Error>
where
Self: 'static
{
Box::new(self)
}
fn until<C>(self, condition: C) -> Until<Self, C>
where
C: Future<Item=()>,
Self::Error: From<C::Error>
{
Until::new(self, condition)
}
fn infallible<E>(self) -> Infallible<Self, E>
where
Self: Future<Error=Void>
{
Infallible::new(self)
}
fn log_error(self, level: LogLevel, description: &'static str) -> LogError<Self>
where
Self: Future<Item=()>,
Self::Error: Display,
{
LogError::new(self, level, description)
}
fn finally<D>(self, on_drop: D) -> Finally<Self, D>
where
D: FnOnce()
{
Finally::new(self, on_drop)
}
}
impl<T: Future + Sized> FutureExt for T {}