Trait ValueArrayEquality
pub trait ValueArrayEquality {
// Required method
fn value_eq<V: AsValue>(&self, other: &[V]) -> bool;
}Expand description
Helper trait that provides value_eq, which compares equality of collections whose elements implement AsValue.
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.