to_stringはinlineでString::fromしてるから全く同じ

impl ToString for str {
#[inline]
fn to_string(&self) -> String {
String::from(self)
}
}