I have been using go fiber and now trying rust rocket framework and realize that in go fiber you can recover from panic using middleware recover link, so is there anything like it in rust rocket framework? If not then how can I implement it manually I thought maybe using fairings
so if I get panic then send JSON response “500 Internal Server Error” instead of crashing the app.