pub trait PartialEqVariadic: VariadicExt + Sealed {
// Required methods
fn eq(&self, other: &Self) -> bool;
fn eq_ref(this: Self::AsRefVar<'_>, other: Self::AsRefVar<'_>) -> bool;
}
Expand description
A variadic where all item implement PartialEq
.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.