This library provided rocket_anyhow::Error, a wrapper around [anyhow::Error] with rocket's [responder] implemented.
rocket_anyhow::Error
```rust use std::io::Write;
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(()) }
```