pub trait ComponentProps: Any {
// Required method
fn changed(&self, other: &dyn ComponentProps) -> bool;
}Required Methods§
fn changed(&self, other: &dyn ComponentProps) -> bool
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".