pub trait ESExprEncodedEq {
// Required method
fn is_encoded_eq(&self, other: &Self) -> bool;
}Expand description
Equality for the encoded ESExpr representation.
Required Methods§
Sourcefn is_encoded_eq(&self, other: &Self) -> bool
fn is_encoded_eq(&self, other: &Self) -> bool
Determines whether two values are equal when encoded as ESExpr.
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.