pub trait Patchable<P> {
// Required method
fn apply_patch(&mut self, patch: P);
}
Expand description
Trait to indicate that a type can be patched.
pub trait Patchable<P> {
// Required method
fn apply_patch(&mut self, patch: P);
}
Trait to indicate that a type can be patched.