diff --git a/src/data/roadmaps/rust/content/101-language-basics/103-data-structures/107-string.md b/src/data/roadmaps/rust/content/101-language-basics/103-data-structures/107-string.md index 187290a20..ed7a54936 100644 --- a/src/data/roadmaps/rust/content/101-language-basics/103-data-structures/107-string.md +++ b/src/data/roadmaps/rust/content/101-language-basics/103-data-structures/107-string.md @@ -4,4 +4,8 @@ In Rust, `String` is a growable, mutable, owned, UTF-8 encoded string type. When Learn more from the following links: -- [@article@What Is a String?](https://doc.rust-lang.org/book/ch08-02-strings.html?highlight=String#what-is-a-string) \ No newline at end of file +- [@official@String in std::string - Rust](https://doc.rust-lang.org/std/string/struct.String.html) +- [@official@str - Rust](https://doc.rust-lang.org/std/primitive.str.html) +- [@official@What Is a String?](https://doc.rust-lang.org/book/ch08-02-strings.html?highlight=String#what-is-a-string) +- [@article@Rust String (With Examples)](https://www.programiz.com/rust/string) +- [@video@All Rust string types explained](https://www.youtube.com/watch?v=CpvzeyzgQdw&pp=ygUOc3RyaW5nIGluIHJ1c3Q%3D)