pub trait AstNodeWithName {
    fn node_name(&self) -> Option<String>;
}

Required methods

Implementors