1 2 3 4 5
use super::Report; pub fn generate(report: &Report) -> anyhow::Result<String> { serde_json::to_string_pretty(report).map_err(Into::into) }