exitfailure - convienent newtype wrapper for failure::Error

Build Status

exitfailure provides a newtype wrapper around failure::Error that will print a formatted list of error causes in it's Debug trait implementation.

It is intended to be used with rust 1.26 and above's "? in main()" feature (see the tracking issue here).

Example: ```rust

[macro use] extern crate failure;

extern crate exitfailure;

use failure::ResultExt; use exitfailure::ExitFailure;

fn main() -> Result<(), ExitFailure> { Ok(some_fn()?) }

fn somefn() -> Result<(), failure::Error> { let error = Err(failure::errmsg("root cause failure")); Ok(error.context("this is some context".to_string())?) } ```

This will print, when executed: ignore Error: this is some context caused by: root cause failure