pub trait Patch: Patchable {
// Required method
fn patch(&mut self, patch: Self::Patch);
}Expand description
A type that can be updated using its companion patch.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.