pub trait DynEq {
// Required method
fn dyn_eq(&self, other: &dyn Any) -> bool;
}Expand description
Allows comparing dyn-compatible objects, like ExprRef.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".