pub trait MacroNode: Any {
// Required method
fn as_any(&self) -> &dyn Any;
}Expand description
NODE TRAITS
MacroNode
Shared trait implemented by every schema node emitted by macro/codegen
surfaces.
as_any keeps downcasting local to the schema-node boundary.