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
The text was updated successfully, but these errors were encountered:
ConsoleTVs
changed the title
Headers' IntoIterator should return a tuple (HeaderName, T) rather than T
[Breaking Change] Headers' IntoIterator should return a tuple (HeaderName, T) rather than T
Jan 26, 2023
Right now, the implementation for the trait
IntoIterator
forHeaderMap
is:This does not allow to iterate over
(header, value)
pairs and is missleading since BothItem
andIntoIter
types are unused.I propose to change this implementation to something along those lines:
With the changes to this, iterations should be way easier now:
The text was updated successfully, but these errors were encountered: