pub trait HirNode {
    fn hir_id(&self) -> HirId;
    fn span(&self) -> Span;
}
Expand description

A node with a HirId and a Span

Required Methods

Implementations on Foreign Types

Implementors