pub trait DualDiff {
    fn diff(&self, new_value: &Self) -> ChangeFlag;
}

Required Methods

check if another is different from myself

Implementors