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
use crate::{async_trait, Handler, Result};
#[derive(Debug, Clone)]
pub struct Map<H, F> {
h: H,
f: F,
}
impl<H, F> Map<H, F> {
#[inline]
pub(super) fn new(h: H, f: F) -> Self {
Self { h, f }
}
}
#[async_trait]
impl<H, F, I, O> Handler<I> for Map<H, F>
where
I: Send + 'static,
O: Send,
H: Handler<I, Output = Result<O>> + Clone,
F: Handler<O, Output = O> + Clone,
{
type Output = H::Output;
async fn call(&self, i: I) -> Self::Output {
Ok(self.f.call(self.h.call(i).await?).await)
}
}