pub trait Ast:
Debug
+ PartialEq
+ Sized {
type Node<'a>: AstNode
where Self: 'a;
// Required methods
fn root_node(&self) -> Self::Node<'_>;
fn source(&self) -> Cow<'_, str>;
}Required Associated Types§
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.