pub trait WithIdent { // Required method fn ident(&self) -> &Ident; }
Helper trait that adds name information to the implementing object.
Returns the name of the object.