Closed
Description
With the split of the builders into per-version kinds (see #2842 and #2851), I feel there's a new question around whether we should remove the prefixes from the method names. They used to exist because the builders were combined over multiple HTTP versions, so the options were scoped to a version. But now:
mod http1 {
impl Builder {
pub fn http1_title_case_headers() {
// ...
}
}
}
It seems all those can have the http1_
prefix removed, and same for the http2::Builder
s.
Noticed in hyperium/hyper-util#11 (comment).