pub trait StringOrStr: Sealed {
// Required method
fn to_string(self) -> String;
}Expand description
A trait implemented by String and &str.
This is more specific than AsRef<str>, which can accidentally include
many other undesired types.