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
Currently, if i want to use RequestBuilder with multiple values for the same header, i have to construct a weird iterator using HeaderValue::from_str since the necessary tools to do this are missing.
I cannot:
simply loop and call append_header, since RequestBuilder doesn't have this
construct a Headers, since its private and i can't pass it to RequestBuilder
construct and HeaderValues for RequestBuilder::header since its private
The only way i want to have multiple header values with RequestBuilder, i need to do this:
Currently, if i want to use RequestBuilder with multiple values for the same header, i have to construct a weird iterator using HeaderValue::from_str since the necessary tools to do this are missing.
I cannot:
The only way i want to have multiple header values with RequestBuilder, i need to do this:
which is quite clunky
The text was updated successfully, but these errors were encountered: