reep-bodyparser-rustcdecodable 0.1.0

impl. for reep::types::BodyParser using the iron (json)bodyparser plugin
docs.rs failed to build reep-bodyparser-rustcdecodable-0.1.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: reep-bodyparser-rustcdecodable-0.2.0

A generic implementation of reep::types::BodyParser using the rustc-serialize Decodable interface from the iron bodyparser core bundle plugin

Schematic Example

let body_parser = RustcDecodableBodyParser::<DecodableStructImplRessource>::new();
let ep = ResourceEndpointBuilder::new(option_parser, body_parser)
    .create(aHandler)
    /*...*/
    .finalize();
app.mount("/users", ep)