Trait ApplyDiff

Source
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§

Source

fn apply_diff_shallow(&mut self, diff: &[Diff])

Source

fn apply_diff(&mut self, diff: &[Diff])

Source

fn apply(&mut self, path: &Path, diff: &[Diff])

Implementors§