Add docs for From::<&mut str>::from String impl
This commit is contained in:
parent
18feaa3fa2
commit
533784d3a2
@ -2227,6 +2227,9 @@ fn from(s: &str) -> String {
|
||||
|
||||
#[stable(feature = "from_mut_str_for_string", since = "1.44.0")]
|
||||
impl From<&mut str> for String {
|
||||
/// Converts a `&mut str` into a `String`.
|
||||
///
|
||||
/// The result is allocated on the heap.
|
||||
#[inline]
|
||||
fn from(s: &mut str) -> String {
|
||||
s.to_owned()
|
||||
|
Loading…
Reference in New Issue
Block a user