1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-06-26 06:57:43 +02:00

implement MessageBody for mut B (#2868)

This commit is contained in:
Rob Ede
2022-09-14 11:23:22 +01:00
committed by GitHub
parent 909461087c
commit c73fba16ce
2 changed files with 70 additions and 1 deletions

View File

@ -1,6 +1,11 @@
# Changes
## Unreleased - 2022-xx-xx
### Added
- Implement `MessageBody` for `&mut B` where `B: MessageBody + Unpin`. [#2868]
- Implement `MessageBody` for `Pin<B>` where `B::Target: MessageBody`. [#2868]
[#2868]: https://github.com/actix/actix-web/pull/2868
## 3.2.2 - 2022-09-11