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§
Provided Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".