pub trait Data: 'static + Clone {
// Required method
fn same(&self, other: &Self) -> bool;
}
Expand description
A trait for fast comparisons of data. Implemented by any type which can be bound to, i.e. can be cached and compared against previous versions.
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.