-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Rename the HttpBody export to Body #2839
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
Comments
What would be the advantage in case of import both trait and struct? |
The struct will be removed, as detailed in #2345. |
I am just starting up with Hyper so would like to work on this task (if that's ok). By renaming and exporting the Lines 19 to 23 in 84f6ae7
But since the concrete |
Yes, we'd need to finish removing parts of |
Is there a separate task that I can work on to remove parts of |
""" We'll eventually want to bikshed the name Recv, but to free up the name Body for hyperium#2839, this can be done quickly. """ Resolve hyperium#2963
""" We'll eventually want to bikshed the name Recv, but to free up the name Body for hyperium#2839, this can be done quickly. """ Resolve hyperium#2963
""" We'll eventually want to bikshed the name Recv, but to free up the name Body for hyperium#2839, this can be done quickly. """ Resolve hyperium#2963
""" We'll eventually want to bikshed the name Recv, but to free up the name Body for hyperium#2839, this can be done quickly. """ Resolve hyperium#2963
This is no longer blocked, since |
Now that the concrete `Body` type has been temporarily replaced with `Recv` in hyperium#2966, we can rename and export `http_body::Body` as just `Body` instead of `HttpBody`. Closes hyperium#2839
@seanmonstar Created PR to address this, would appreciate a review to understand if I missed something. |
Now that the concrete `Body` type has been temporarily replaced with `Recv` in hyperium#2966, we can rename and export `http_body::Body` as just `Body` instead of `HttpBody`. Closes hyperium#2839
Now that the concrete `Body` type has been temporarily replaced with `Recv` in hyperium#2966, we can rename and export `http_body::Body` as just `Body` instead of `HttpBody`. Closes hyperium#2839
When the concrete
Body
struct is removed, we can export thehttp_body::Body
trait as justBody
.The text was updated successfully, but these errors were encountered: