An open API service indexing awesome lists of open source software.

https://github.com/printfn/ees

Simple Error-Handling Library
https://github.com/printfn/ees

Last synced: 3 months ago
JSON representation

Simple Error-Handling Library

Awesome Lists containing this project

README

        

# ees: Simple Error-Handling Library

`ees` is a simple error-handling library. Rather than provide its own error-related
types, it uses `std::error::Error` and provides a number of convenience functions.

```rust
use std::io::Read;

// Use ees::Error for arbitrary owned errors
// You can also use ees::Result<()> as a shorthand
fn do_work() -> Result<(), ees::Error> {
let mut file = std::fs::File::open("hello world")?;
let mut contents = String::new();
file.read_to_string(&mut contents)?;
if contents.is_empty() {
// Construct an error on the fly
ees::bail!("file is empty");
}
Ok(())
}

// Take an arbitrary borrowed error
fn take_an_error(error: ees::ErrorRef<'_>) {
// Print the complete error chain
println!("Error: {}", ees::print_error_chain(error));
}

// Use ees::MainResult to automatically create nicely-
// formatted error messages in the main() function
fn main() -> ees::MainResult {
do_work()?;
do_work().map_err(
// add additional context
|e| ees::wrap!(e, "failed to do work"))?;
Ok(())
}
```