pub trait CargoResultExt<T, E> {
    fn chain_err<F, D>(self, f: F) -> Result<T, Context<D>>
    where
        F: FnOnce() -> D,
        D: Display + Send + Sync + 'static
; }

Required Methods

Implementations on Foreign Types

Implementors