rocket_anyhow

This library provided rocket_anyhow::Error, a wrapper around [anyhow::Error] with rocket's [responder] implemented.

```rust use std::io::Write;

[post("/

fn writeutf8to(path: std::path::PathBuf, text: Vec) -> rocketanyhow::Result { let mut file = std::fs::File::open(path)?; let text = std::str::fromutf8(&text)?; file.writeall(text.asref())?; Ok(()) }

```