fn-error-context 0.2.1

An attribute macro to add context to errors from a function.
Documentation
1
2
3
4
5
6
7
8
use fn_error_context::context;

#[context("context")]
async fn borrows(x: &mut u32) -> anyhow::Result<&mut u32> {
    Ok(x)
}

fn main() {}