pub trait Diffable {
// Required method
fn delta(&self, other: &Self) -> Self;
}Expand description
Elements that can be compared with another instance to produce a diff.
Required Methods§
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.