trait ErasedDataComponentPredicate:
ErasedType
+ Debug
+ Send
+ Sync {
// Required methods
fn clone_predicate(&self) -> Box<dyn ErasedDataComponentPredicate>;
fn predicate_eq(&self, other: &dyn ErasedDataComponentPredicate) -> bool;
}Required Methods§
fn clone_predicate(&self) -> Box<dyn ErasedDataComponentPredicate>
fn predicate_eq(&self, other: &dyn ErasedDataComponentPredicate) -> bool
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".