pub trait GetIdent { // Required method fn get_ident(&self) -> Result<Ident, String>; }
Gets the Ident from the AST element.
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".