usecore::fmt;/// Debug impl for a static string without quotes.
pub(crate)structStrDisplayAsDebug(pub(crate)&'staticstr);implfmt::Debug forStrDisplayAsDebug{fnfmt(&self, f:&mutfmt::Formatter<'_>)->fmt::Result{// Use the Display formatter to write the string without quotes.
fmt::Display::fmt(&self.0, f)}}