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