pub trait PutRenderable { type Put; // Provided method fn put(&mut self, _representation: &Self::Put) -> Result<(), Error> { ... } }
Subset of TypeRenderable that handles the PUT method.
TypeRenderable
Input type of the put() method, deserialized from the request payload.