mod content { pub struct RawHtml(pub T); } struct Json(T); #[post("/hello", data = "")] fn hello(body: Json) -> content::RawHtml> { content::RawHtml(body) }