Expand description
Request method wrappers.
For a given type T that implements GetRequest, Get<T> implements Request. These are
types that wrap request method traits and turn them into something that implements Request.
You do not need to use these directly, rather you can use the RequestMethod trait to make
your type implement Request directing, using one of these wrapper types.
Structsยง
- Delete
- Turn a
DeleteRequestinto aRequest. - Get
- Turn a
GetRequestinto aRequest. - Head
- Turn a
HeadRequestinto aRequest. - Patch
- Turn a
PatchRequestinto aRequest. - Post
- Turn a
PostRequestinto aRequest.