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
use {IntoTransaction, Transaction};

pub fn map_err<Ctx, A, F, B>(a: A, f: F) -> MapErr<A::Tx, F>
where
    A: IntoTransaction<Ctx>,
    F: Fn(A::Err) -> B,
{
    MapErr {
        tx: a.into_transaction(),
        f: f,
    }
}


/// The result of `map_err`
#[derive(Debug)]
#[must_use]
pub struct MapErr<Tx, F> {
    tx: Tx,
    f: F,
}

impl<E, Tx, F> Transaction for MapErr<Tx, F>
where
    Tx: Transaction,
    F: Fn(Tx::Err) -> E,
{
    type Ctx = Tx::Ctx;
    type Item = Tx::Item;
    type Err = E;

    fn run(&self, ctx: &mut Self::Ctx) -> Result<Self::Item, Self::Err> {
        let &MapErr { ref tx, ref f } = self;
        tx.run(ctx).map_err(f)
    }
}