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§
Object Safety§
This trait is not object safe.