usesyn::Ident;/// Shortcut to get [syn::Ident](struct@syn::Ident) from various types
pubtraitGetIdent{/// Returns reference of ident if its [syn::Path] is [syn::Ident](struct@syn::Ident); Otherwise None
////// Any [crate::ext::GetPath] also implements `GetIdent`.
fnget_ident(&self)->Option<&Ident>;}