1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-06-25 22:49:21 +02:00

add impl FromRequest for Either<A,B> (#618)

This commit is contained in:
Akos Vandra
2018-12-10 17:02:05 +01:00
committed by Douman
parent ac9fc662c6
commit 86af02156b
3 changed files with 202 additions and 3 deletions

View File

@ -1,8 +1,14 @@
# Changes
## [0.7.16] - xxxx-xx-xx
### Added
* Implement `FromRequest` extractor for `Either<A,B>`
## [0.7.15] - 2018-12-05
## Changed
### Changed
* `ClientConnector::resolver` now accepts `Into<Recipient>` instead of `Addr`. It enables user to implement own resolver.