You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The String and str type implements AsRef<str> and AsRef<[u8]>, AsRef<Path>, and AsRef<OsStr>.
Conversely, Box<str> implements only AsRef<str>.
This looks like a miss of opportunity.
Box<str> should also implement AsRef<[u8]>, AsRef<Path>, AsRef<OsStr>, and FromStr.