Skip to content

Latest commit

 

History

History
38 lines (34 loc) · 1.92 KB

README.md

File metadata and controls

38 lines (34 loc) · 1.92 KB

Advanced concepts in Rust

This section helps you learn advanced concepts to make you more comfortable in rust. The following topics will be discussed in this section:

  1. Memory Management
  2. Type System and Generics
  3. Concurrency and Parallelism
    • Async/Await and Futures
    • Task Executors
    • Concurrency
  4. Macros and Meta programming
  5. Low level and systems programming
  6. Error handling and patterns
  7. Specialized topics
    • Writing a custom allocator
    • Self-referential structs (box, rc, Arc)