Skip to main content

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>

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§