Crates.io Docs.rs

fn-error-context

An attribute macro to add context to errors from a function.

```

[context("failed to parse config at {}", path.display())]

pub fn parseconfig(path: &Path) -> anyhow::Result { let text = readto_string(path)?; Ok(text.parse()?) } ```