pub trait ApplyDiff {
// Required methods
fn apply_diff_shallow(&mut self, diff: &[Diff]);
fn apply_diff(&mut self, diff: &[Diff]);
fn apply(&mut self, path: &Path, diff: &[Diff]);
}Required Methods§
fn apply_diff_shallow(&mut self, diff: &[Diff])
fn apply_diff(&mut self, diff: &[Diff])
fn apply(&mut self, path: &Path, diff: &[Diff])
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".