pub trait ErrorMap<T, E0> {
    type R;

    fn cxm<S, MF>(self, mf: MF) -> Self::R
    where
        MF: FnOnce() -> S,
        S: ToOwned<Owned = String>,
        String: Borrow<S>
; }

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors