pub trait Replace {
// Required methods
fn is_unchanged(&self) -> bool;
fn is_replaced(&self) -> bool;
}Expand description
A trait that must be implemented by any type that results from a ‘diff’ operation.
Generally this trait need not be implemented by the user. Instead look to use
generic wrapper types AtomicDiff and DeepDiff.