pub trait Invalidatable<M> {
// Provided method
fn invalidated_by(&self, _mutation: &M) -> bool { ... }
}Expand description
Something which can be invalidated.
Provided Methods§
fn invalidated_by(&self, _mutation: &M) -> bool
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".