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
Would you consider marking crow::multipart::message constructor from crow::request as explicit?
Parsing multipart message is a somewhat computationally expensive process, and currently (#838) leads to excessive memory copying.
I have encountered this problem when writing and using small helpers that extract data from multipart messages - accidentally passing a crow::request there instead of a crow::multipart::message leads to re-parsing of the request.
Marking the constructor as explicit would make this error easily noticeable and less probable.