10 releases (4 breaking)

Uses old Rust 2015

0.5.1 Aug 3, 2018
0.5.0 Jul 27, 2018
0.4.1 Jun 18, 2018
0.3.0 May 30, 2018
0.1.0 May 13, 2018

#18 in #failure

Download history 2271/week @ 2023-10-24 2160/week @ 2023-10-31 2250/week @ 2023-11-07 2075/week @ 2023-11-14 1921/week @ 2023-11-21 2043/week @ 2023-11-28 1694/week @ 2023-12-05 1960/week @ 2023-12-12 1660/week @ 2023-12-19 1777/week @ 2023-12-26 1985/week @ 2024-01-02 2222/week @ 2024-01-09 2117/week @ 2024-01-16 2023/week @ 2024-01-23 2334/week @ 2024-01-30 2045/week @ 2024-02-06

8,841 downloads per month
Used in fewer than 127 crates

MIT/Apache

12KB
69 lines

exitfailure - convenient newtype wrappers for using ? in main()

Build Status Build status codecov

exitfailure provides some newtype wrappers to help with using ? in main().

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

The primary items exported by this library are:

  • ExitFailure: a wrapper around failure::Error to allow ? printing from main to present a nicer error message, including any available context and backtrace.

  • ExitDisplay<E>: a wrapper around E: std::fmt::Display to allow the error message from main to use Display and not Debug.

For more information, including more details on the types, please see the API Documentation.

Example:

#[macro use] extern crate failure;
extern crate exitfailure;

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

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

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

This will print, when executed:

Error: this is some context
Info: caused by root cause failure

If the environment variable RUST_BACKTRACE=1 is set, then the printing will include whatever backtrace information is provided by the failure::Error that is being wrapped.

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~64KB