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
std::borrow::ToOwned's doc page lists impl<T> ToOwned<T> for T as an implementor which is not accurate. Only through reading the source does it becomes apparent that it should read impl<T> ToOwned<T> for T where T: Clone.