diff --git a/src/liballoc/string.rs b/src/liballoc/string.rs index 5c776292f53..50d2c04657a 100644 --- a/src/liballoc/string.rs +++ b/src/liballoc/string.rs @@ -2206,6 +2206,20 @@ impl<'a> From<&'a str> for String { #[cfg(not(test))] #[stable(feature = "string_from_box", since = "1.18.0")] impl From> for String { + /// Converts the given boxed `str` slice to a `String`. + /// It is notable that the `str` slice must be owned. + /// + /// # Examples + /// + /// Basic usage: + /// + /// ``` + /// let s1 : String = String::from("hello world"); + /// let s2 : Box = s1.into_boxed_str(); + /// let s3 : String = String::from(s2); + /// + /// assert_eq!("hello world", s3) + /// ``` fn from(s: Box) -> String { s.into_string() }