IPatchRenderable

Trait IPatchRenderable 

Source
pub trait IPatchRenderable {
    type IPatch;

    // Provided method
    fn ipatch(&mut self, _representation: &Self::IPatch) -> Result<(), Error> { ... }
}
Expand description

Subset of TypeRenderable that handles the IPATCH method.

Required Associated Types§

Source

type IPatch

Input type of the ipatch() method, deserialized from the request payload.

Provided Methods§

Source

fn ipatch(&mut self, _representation: &Self::IPatch) -> Result<(), Error>

Implementors§