pub trait GetName {
    fn name(&self) -> Id;
}
Expand description

A trait representing something in the IR that has a name.

Required Methods

Return a reference to the object’s name

Implementors