//! Trait for converting theme identifiers to string
/// Trait for types that can be converted to theme names
pubtraitIntoThemeName: std::fmt::Display + 'static {fnas_theme_name(&self)-> String;}implIntoThemeName forString{fnas_theme_name(&self)-> String{self.clone()}}implIntoThemeName for&'staticstr{fnas_theme_name(&self)-> String{(*self).to_string()}}