I am a Web Developer and just learning Rust. In here I tried to summarize what I learned and time to time I'll update this book. Hope this will be helpful for newcomers like me :)
This is based on the posts I wrote on Medium, https://medium.com/learning-rust
- [Why Rust?](01. why_rust.html)
- [Installation](02. installation.html)
- [Hello World](03. hello_world.html)
- [Cargo, Crates and Basic Project Structure](04. cargo,_crates_and_basic_project_structure.html)
- [Comments and Documenting the code](05. comments_and_documenting_the_code.html)
- [Variable bindings , Constants & Statics](06. variable_bindings_,constants&_statics.html)
- [Functions](07. functions.html)
- [Primitive Data Types](08. primitive_data_types.html)
- [Operators](09. operators.html)
- [Control Flows](10. control_flows.html)
- [Vectors](11. vectors.html)
- [Structs](12. structs.html)
- [Enums](13. enums.html)
- [Generics](14. generics.html)
- [Impls & Traits](15. Impls_and_traits.html)
- [Ownership](16. ownership.html)
- [Borrowing](17. borrowing.html)
- [Lifetimes](18. lifetimes.html)