Skip to main content

ApplyDiff

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])

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§