Links in Readme.md, New concepts (/src/*.rs)

This commit is contained in:
SocioCyber
2026-04-06 22:03:09 -07:00
parent f750099b06
commit 8e9480b598
6 changed files with 369 additions and 5 deletions

View File

@@ -1,5 +1,66 @@
# Learning
Rust Concepts: https://sociocyber.site/rust_concepts_v2.html
Exploration a Rust Programming Language - (33 concepts)
And ETC.
Rust Concepts: [https://sociocyber.site/rust_concepts_v2.html](https://sociocyber.site/rust_concepts_v2.html)
Exploration a Rust Programming Language - (33 concepts)
## Memory
---
1. [Ownership](./Rust_Concepts/src/ownership.rs)
2. [Borrowing ](./Rust_Concepts/src/borrowing.rs)(shared &)
3. [Mutable Borrow](./Rust_Concepts/src/mutable_borrow.rs) (&mut)
4. [Clone](./Rust_Concepts/src/clone.rs)
5. [Stack vs Heap](./Rust_Concepts/src/stack_vs_heap.rs)
## TYPES
---
// Todo
## CONTROL
---
// Todo
## TRAITS
---
// Todo
## ERROR
---
// Todo
## LIFETIME
---
## ITER
---
// Todo
## CLOSURES
---
// Todo
## CONCUR
---
// Todo
## MODULES
---
// Todo