Crate reqwest_response_ext
source ·Expand description
TypedResponse
allows you to keep response body data, while remembering the
desired shape of both success and failure variant. TypedResponse
lets you
extract raw body, or deserialize it into either serde_json::Value
or required
success/failure shape based on the original response HTTP status.
Modules
Structs
- Holds raw response body, while remembering desired shape of the success (
T
) and failure (E
) variants.