| Crates.io | rustbook-learning-guide |
| lib.rs | rustbook-learning-guide |
| version | 0.1.0 |
| created_at | 2025-07-28 09:44:28.845906+00 |
| updated_at | 2025-07-28 09:44:28.845906+00 |
| description | A comprehensive Rust learning guide with practical examples covering ownership, traits, polymorphism, and more |
| homepage | https://github.com/vidur0001/rustbook-learning-guide |
| repository | https://github.com/vidur0001/rustbook-learning-guide |
| max_upload_size | |
| id | 1770919 |
| size | 32,237 |
A comprehensive Rust learning guide with practical examples covering fundamental to advanced concepts. Perfect for developers starting their Rust journey or looking to solidify their understanding.
Add this to your Cargo.toml:
[dependencies]
rustbook-learning-guide = "0.1.0"
use rustbook_learning_guide::*;
fn main() {
// Run basic examples
basics::variable_examples();
collections::slice_examples();
// Explore ownership
ownership_borrowing::ownership_examples();
// Try advanced concepts
traits_and_generics::trait_examples();
smart_pointers::smart_pointer_examples();
}
Run the examples:
cargo run
Generate documentation:
cargo doc --open
Run tests:
cargo test
Contributions are welcome! Please feel free to submit a Pull Request.
This project is licensed under the MIT OR Apache-2.0 license.
Created as a learning resource for the Rust community. Special thanks to the Rust team for creating such an amazing language!
Happy Coding! 🦀