Generic wrapper around a value that should be serialised as the JSON body of an HTTP response. The struct is intentionally a single-field carrier — the value gets to into_response() via the IntoResponse impl below, which calls T.to_json() (so T must implement JsonBind).
Build:
let r: HttpResponse = json_respond(StructLegal { nome: "alice", idade: some(30) });