usesyn::Ident;/// Converts a string into an Ident.
////// ## Arguments
////// * `string` - The string to convert into an Ident.
////// ## Returns
////// The Ident representation of the string.
pubfnstr_to_ident(string: String)-> Ident{Ident::new(&string,proc_macro::Span::call_site().into())}