usesyn::Path;/// Helper trait for holding idents.
pubtraitAttributeIdent{/// Holds the idents.
constIDENTS:&'static[&'staticstr];/// Check if path exists in the idents.
fnis_ident(path:&Path)->bool{Self::IDENTS.iter().any(|ident|path.is_ident(ident))}}