This crate is a lightweight error handling library meant to play well with the standard Error
trait.
There are three major components of this crate:
The current version requires Rustc 1.32 or newer. In general, this crate will be compilable with the Rustc version available on the oldest Ubuntu LTS release. Any change that requires a new Rustc version will be considered a breaking change and will be handled accordingly.
```rust use std::{fs::File, io::Read}; use easy_error::{Error, ResultExt};
fn run(file: &str) -> Result
let mut contents = String::new();
file.read_to_string(&mut contents).context("Unable to read file")?;
let value = contents.trim().parse().context("Could not parse file")?;
ensure!(value != 0, "Value cannot be zero");
Ok(value)
}
fn main() { let file = "example.txt";
if let Err(e) = run(file) {
eprintln!("Error: {}", e);
e.iter_causes().for_each(|c| eprintln!("Caused by: {}", c));
}
} ```