I have looked up everywhere but I only found this github issue, but it's from 5 years ago, and rocket has changed a lot. Is there a way to catch all methods (get, post, head, options, whatever .. .) and all routes (/abc, /abc/xyz, /xyz, /whatever) in rocket.
I tried using the code from the github issue, but rocket api has updated a lot so I can't figure out how.
What you want to do is part of "manual routing" in Rocket, the code linked in the issue you found is now a dead link, but there's a similar example in the current version.
It uses the
Handler
trait with its impl for functions:If you need multiple methods you can loop through them in the same way that's described in the issue and create the routes with
The
<path..>
captures all segments (query parameters are caught by default from my testing), and you can get to them usingRequest
's methods.