//! Implementations of `Localize` for various string types
usecrate::Localize;usestd::borrow::Cow;useicu_locale::Locale;macro_rules!impl_string{($string_type:ty)=>{implLocalize for$string_type{fnlocalize_for(&self, _locale:&Locale)-> String{(*self).to_string()}}};
}impl_string!(String);impl_string!(&str);impl_string!(Box<str>);impl_string!(Cow<'_, str>);