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
… since they are redundant with StrAllocating::to_owned and StrAllocating::into_owned. The latter names are more specific, assuming we talk about String as an "owned string" and &str as a "string slice".
The text was updated successfully, but these errors were encountered:
The to_owned method has been deprecated and is slated to removal, and it appears that the into_owned method was accidentally not marked #[deprecated] just yet. I believe the current plan is to remove the owned functions and leave the string functions. That is not set in stone though.
… since they are redundant with
StrAllocating::to_owned
andStrAllocating::into_owned
. The latter names are more specific, assuming we talk aboutString
as an "owned string" and&str
as a "string slice".The text was updated successfully, but these errors were encountered: