pub trait AnyhowWrap {
    type Value;

    fn map_err_anyhow(self) -> Result<Self::Value>;
}
Expand description

Some Result<> types don’t convert to anyhow::Result nicely. Force them through stringification.

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors