pub trait AstEq {
// Required method
fn ast_eq(&self, other: &Self) -> bool;
}
Expand description
Check if two ParseTrees are equal ignoring location information or ordering if ordering does not matter
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.