Provides a ResourceEndpointBuilder
witch allows you to
easily build RESTlike resource based endpoints.
This implementation uses static constraints to assure that e.g. if a resource replacing handler is called the query options are parsed/valid, the resource id in the url is parsed/valid and the body is parsed/valid.
All parsed elements (option(=queryparameter), id and body) will be put into the request extensions typemap
using the statically provided types. Note that it is assured that the BodyParser
creates a resource witch's id type is the same as that of the parsed id.
There are some existing reusable implementations for some of the reep::types
-Traits:
Due to some problems when placing the example under /examples
a full example can be found in the reep-example repo. Additionally here is a schematic usage example:
```rustc
let ep = ResourceEndpointBuilder::new(optionParser, bodyParser) .create(ironHandlerForCreating) .list(ironHandlerForListing) .delete(ironHanderForDeleting) .replace(ironHandlerForReplacing) .get(ironHanderForGeting) .finalize();
app.mount("/users", ep); ```
MIT