pub trait AstNodeWithName {
    // Required method
    fn node_name(&self) -> Option<&str>;
}

Required Methods§

source

fn node_name(&self) -> Option<&str>

Implementors§