pub trait Diff: Debug {
    fn diff(&mut self, other: &mut Self, ctx: &mut Ctx) -> DiffResult;
}

Required methods

This may remove common node from self and other.

Implementations on Foreign Types

Ignored

Implementors