### Location - [`<str>::from_utf8`](https://doc.rust-lang.org/stable/std/primitive.str.html#method.from_utf8) - [`<str>::from_utf8_mut`](https://doc.rust-lang.org/stable/std/primitive.str.html#method.from_utf8_mut) - [`<str>::from_utf8_unchecked`](https://doc.rust-lang.org/stable/std/primitive.str.html#method.from_utf8_unchecked) - [`<str>::from_utf8_unchecked_mut`](https://doc.rust-lang.org/stable/std/primitive.str.html#method.from_utf8_unchecked_mut) ### Summary These methods are aliases to `core::str::from_utf8*` functions. So I think it would be better to mention this as follows: ```rust /// This is an alias to [`core::str::from_utf8`]. ``` This also makes it more clear that the results of `<str>::from_utf8*` methods and `core::str::from_utf8*` functions are the same.