You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Currently, the handler closures cannot error out: they must crash on an error.
Describe the solution you'd like
It would be nice if there were a way to propagate errors up and out of the closured, e.g. if the closures returned a Result<()> and then the handle_request() function also returned a Result<()>.
Is your feature request related to a problem? Please describe.
Currently, the handler closures cannot error out: they must crash on an error.
Describe the solution you'd like
It would be nice if there were a way to propagate errors up and out of the closured, e.g. if the closures returned a
Result<()>and then thehandle_request()function also returned aResult<()>.