There are many online books about Rust. Here is popular 5:
1. The Book
https://doc.rust-lang.org/book/ch04-02-references-and-borrowing.html - you start here
2. Rust by example
https://doc.rust-lang.org/rust-by-example/std/result/question_mark.html - the same concepts as in The Book but oriented more on practical examples
3. Cookbook
https://rust-lang-nursery.github.io/rust-cookbook/file/read-write.html - about using crates in real-life problems, solutions, best practices
4. Rustonomicon
https://doc.rust-lang.org/nomicon/send-and-sync.html - when you are ready for something spicy
5. Learning Rust
https://learning-rust.github.io/docs/combinators/ - and back to origin