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.

Functions

Traits

Example

use expect_exit::Expected;

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