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
This also uncovers some unpleasantness with the current typed headers - not all of the implement the same methods, one mutates in .value(), some return String or Result<String> instead of HeaderValue, one didn't implement name() either.
Even if we don't make it a trait the consistency should be fixed in 3.0, but we should probably decide on the trait or-not before doing that work.
The text was updated successfully, but these errors were encountered:
pubtraitHeader{fnheader_name(&self) -> Result<HeaderName>;fnheader_value(&self) -> Result<HeaderValue>;}// NOTE: maybe this should take `Into<HeaderName>` / `Into<HeaderValue>` for compat with existing methods.// though that may actually complicate things.implHeaderfor(HeaderName,HeaderValue){fnheader_name(&self) -> Result<HeaderName>{Ok(self.0)}fnheader_value(&self) -> Result<HeaderValue>{Ok(self.1)}}
There's no need for a separate to_header method since both header_name and header_value take a shared reference to self. Getting both is a matter of calling both methods; and any input trait should be able to take tuples of (HeaderName, HeaderValue) without a problem through a generic impl.
There is one more question on how to actually do the conversions to and from the specific typed header types (e.g. from_headers), but I think those can continue to live on the actual structs. We should take one step at the time here.
As discovered in #285:
Even if we don't make it a trait the consistency should be fixed in 3.0, but we should probably decide on the trait or-not before doing that work.
The text was updated successfully, but these errors were encountered: