expect-exit: display an error message and exit without a panic

The expect-exit library defines the Expected trait and implements it for the standard Result enum so that a program can display an error message and exit with a non-zero exit code without invoking a Rust panic, yet optionally unwinding the stack so that various objects may perform some clean-up actions.

Functions

Traits

Example

use expect_exit::Expected;

fn get_env_var(name: &str) -> String {
    env::var(name).expect_or_exit(&format!("{} not specified in the environment", name))
}