Set the error [context
] using doc comments.
This is useful because instead of writing manual error messages to provide context to an error, it automatically derives it from doc comments. This works especially well for async contexts, where stack traces may not be persisted past yield points and thread boundaries. But contexts do.
```rust use context_attribute::context; use failure::{ensure, ResultExt};
/// Square a number if it's less than 10.
fn square(num: usize) -> Result
fn main() -> Result<(), failure::Error> {
let args = std::env::args();
ensure!(args.len() == 2, "usage: square
println!("result is {}", square(input)?);
Ok(())
} ```
sh
$ cargo run --example square 12
Error: ErrorMessage { msg: "Number was too large" }
Square a number if it's less than 10.
sh
$ cargo add context-attribute
This crate uses #![deny(unsafe_code)]
to ensure everything is implemented in
100% Safe Rust.
Want to join us? Check out our "Contributing" guide and take a look at some of these issues:
None.
MIT OR Apache-2.0