errify

Crates.ioerrify
lib.rserrify
version0.3.0
sourcesrc
created_at2024-05-12 10:38:20.797908
updated_at2024-05-16 21:42:45.342743
descriptionFunction error context provider
homepage
repositoryhttps://github.com/LazyMechanic/errify
max_upload_size
id1237350
size35,251
Artem (LazyMechanic)

documentation

https://docs.rs/errify

README

errify

crates.io docs.rs build

This library provides the macros that provide error context for the entire function.

[dependencies]
errify = "0.3"

Usage example

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

License

Licensed under either of Apache License, Version 2.0 or MIT license at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this crate by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
Commit count: 47

cargo fmt