Deprecate String::from_str in favor of String::from
With the latter is provided by the `From` conversion trait, the former is now completely redundant. Their code is identical.
This commit is contained in:
parent
64d32b057e
commit
2ff42435c2
@ -93,8 +93,8 @@ impl String {
|
||||
/// assert_eq!(&s[..], "hello");
|
||||
/// ```
|
||||
#[inline]
|
||||
#[unstable(feature = "collections",
|
||||
reason = "needs investigation to see if to_string() can match perf")]
|
||||
#[unstable(feature = "collections", reason = "use `String::from` instead")]
|
||||
#[deprecated(since = "1.2.0", reason = "use `String::from` instead")]
|
||||
#[cfg(not(test))]
|
||||
pub fn from_str(string: &str) -> String {
|
||||
String { vec: <[_]>::to_vec(string.as_bytes()) }
|
||||
|
Loading…
x
Reference in New Issue
Block a user