Skip to content

Commit ab469eb

Browse files
luqmanaseanmonstar
authored andcommittedNov 3, 2021
feat(upgrade): allow http upgrades with any body type
Allow using `Request<T>`/`Response<T>` for any given T with `upgrade::on` instead of just restricting it to `hyper::Body`.
1 parent b5022f3 commit ab469eb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
 

‎src/upgrade.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -258,31 +258,31 @@ mod sealed {
258258
fn on_upgrade(self) -> OnUpgrade;
259259
}
260260

261-
impl CanUpgrade for http::Request<crate::Body> {
261+
impl<B> CanUpgrade for http::Request<B> {
262262
fn on_upgrade(mut self) -> OnUpgrade {
263263
self.extensions_mut()
264264
.remove::<OnUpgrade>()
265265
.unwrap_or_else(OnUpgrade::none)
266266
}
267267
}
268268

269-
impl CanUpgrade for &'_ mut http::Request<crate::Body> {
269+
impl<B> CanUpgrade for &'_ mut http::Request<B> {
270270
fn on_upgrade(self) -> OnUpgrade {
271271
self.extensions_mut()
272272
.remove::<OnUpgrade>()
273273
.unwrap_or_else(OnUpgrade::none)
274274
}
275275
}
276276

277-
impl CanUpgrade for http::Response<crate::Body> {
277+
impl<B> CanUpgrade for http::Response<B> {
278278
fn on_upgrade(mut self) -> OnUpgrade {
279279
self.extensions_mut()
280280
.remove::<OnUpgrade>()
281281
.unwrap_or_else(OnUpgrade::none)
282282
}
283283
}
284284

285-
impl CanUpgrade for &'_ mut http::Response<crate::Body> {
285+
impl<B> CanUpgrade for &'_ mut http::Response<B> {
286286
fn on_upgrade(self) -> OnUpgrade {
287287
self.extensions_mut()
288288
.remove::<OnUpgrade>()

0 commit comments

Comments
 (0)
Please sign in to comment.