errify
This library provides the macros that provide error context for the entire function.
[]
= "0.3"
Usage example
use errify;
For more information, see the documentation
This library provides the macros that provide error context for the entire function.
[dependencies]
errify = "0.3"
use errify::errify;
#[errify("Custom error context, with argument capturing {arg} = {}", arg)]
fn func(arg: i32) -> Result<(), anyhow::Error> {
// ...
}
For more information, see the documentation