Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Typed Headers to be consistent #286

Closed
Fishrock123 opened this issue Nov 25, 2020 · 2 comments · Fixed by #315
Closed

Fix Typed Headers to be consistent #286

Fishrock123 opened this issue Nov 25, 2020 · 2 comments · Fixed by #315
Labels
semver-major This change requires a semver major change
Milestone

Comments

@Fishrock123
Copy link
Member

As discovered in #285:

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.

@Fishrock123 Fishrock123 added the semver-major This change requires a semver major change label Nov 25, 2020
@Fishrock123 Fishrock123 added this to the 3.0 milestone Nov 25, 2020
@brightly-salty
Copy link
Contributor

Do we want a trait like the following?

pub trait TypedHeader {

  fn name(&self) -> Result<HeaderName>;

  fn value(&self) -> Result<HeaderValue>;

  fn to_header() -> Result<(HeaderName, HeaderValue)> {
    (self.name()?, self.value()?)
  }

}

@yoshuawuyts
Copy link
Member

I was thinking something closer to:

pub trait Header {
    fn header_name(&self) -> Result<HeaderName>;
    fn header_value(&self) -> Result<HeaderValue>;
}


// NOTE: maybe this should take `Into<HeaderName>` / `Into<HeaderValue>` for compat with existing methods.
// though that may actually complicate things.
impl Header for (HeaderName, HeaderValue) {
    fn header_name(&self) -> Result<HeaderName> {
        Ok(self.0)
    }

    fn header_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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
semver-major This change requires a semver major change
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants