Expand description
Traits for converting between the various types
Enums§
- Incoming
Request Error - An error converting an
IncomingRequest
Traits§
- From
Body - A trait from converting from a body
- Into
Body - A trait for any type that can be turned into a
Response
body - Into
Headers - A trait for any type that can be turned into
Response
headers - Into
Response - A trait for any type that can be turned into a
Response
- Into
Status Code - A trait for any type that can be turned into a
Response
status code - TryFrom
Body - A trait for converting from a body or failing
- TryFrom
Incoming Request - A trait for trying to convert from an
IncomingRequest
to the implementing type - TryFrom
Incoming Response - A trait for converting from an
IncomingRequest
- TryFrom
Request - A trait for any type that can be constructor from a
Request
- TryInto
Body - A trait for any type that can be turned into a
Response
body or fail - TryInto
Outgoing Request - A trait for converting a type into an
OutgoingRequest
- TryInto
Request - Turn a type into a
Request
- TryNon
Request From Request - A hack that allows us to do blanket impls for
T where T: TryFromRequest
for all typesT
except forRequest
.