This repository has been archived by the owner on Jun 2, 2020. It is now read-only.
Reimplement HttpRequest and HttpResponse #346
Labels
awaiting release
The issue has been resolved in the dev branch and is awaiting the next release to close.
breaking change
The resolution to the issue will be considered a breaking change.
enhancement
New feature or request
Milestone
HttpRequest
andHttpResponse
were the very first Azure Functions bindings implemented in Azure Functions for Rust.They were implemented at a time when the RPC data was borrowed by the function, which explains their "read-only" interface.
As the data is now moved into the binding type, I think both types should expose the pure data underlying the RPC
RpcHttp
type as members.This will also make implementing exposing sub-RPC types like the cookie data more ergonomic.
This will be a big breaking change.
The text was updated successfully, but these errors were encountered: