pub trait Diff: Debug + PartialEq {
// Required method
fn diff<'a>(&'a self, other: &'a Self) -> Option<Vec<Difference<'a>>>;
}
Required Methods§
fn diff<'a>(&'a self, other: &'a Self) -> Option<Vec<Difference<'a>>>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.