pub trait HasEntry: AstNode {
// Provided methods
fn entries(&self) -> AstChildren<Entry>
where Self: Sized { ... }
fn attrpath_values(&self) -> AstChildren<AttrpathValue>
where Self: Sized { ... }
fn inherits(&self) -> AstChildren<Inherit>
where Self: Sized { ... }
}