#error-message #exit #panic #expect #terminate

bin+lib expect-exit

Result.expected(): display an error message and exit without a panic

11 releases

0.5.2 Oct 10, 2022
0.4.3 Jun 4, 2022
0.4.1 Sep 1, 2021
0.4.0 Jun 22, 2021
0.2.0 Nov 13, 2020

#512 in Rust patterns

Download history 49/week @ 2023-12-05 77/week @ 2023-12-12 16/week @ 2023-12-19 6/week @ 2024-01-02 10/week @ 2024-01-09 27/week @ 2024-01-16 29/week @ 2024-01-23 20/week @ 2024-01-30 51/week @ 2024-02-06 65/week @ 2024-02-13 113/week @ 2024-02-20 114/week @ 2024-02-27 71/week @ 2024-03-05 72/week @ 2024-03-12 90/week @ 2024-03-19

397 downloads per month
Used in git-select-branch

BSD-2-Clause

49KB
1K SLoC

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

The expect-exit library defines the Expected, ExpectedWithError, and ExpectedResult traits and implements them for the standard Result and Option types as appropriate. This allows a program to 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.

The methods with an _e suffix append an appropriate error message to the supplied one. The methods with a _ suffix allow the caller to specify an already-constructed message instead of a function that returns it.

Example

use expect_exit::{Expected, ExpectedResult};

{
    env::var(name).or_exit(|| format!("{} not specified in the environment", name))

    fs::read_to_string(path).or_exit_e(|| format!("Could not read {:?}", path))

    tx.send(result).await.or_exit_e_("Could not tell the main thread");

    let config = parse().expect_result_("Could not parse the config")?;
    Ok(config.value + 1)
}

For the crate's change history, see the NEWS.md file in the source distribution.

Author: Peter Pentchev <roam@ringlet.net>

No runtime deps