Skip to content

Latest commit

 

History

History
10 lines (8 loc) · 229 Bytes

README.md

File metadata and controls

10 lines (8 loc) · 229 Bytes

Ownership

Rust ownership consists of mainly 3 concepts:

  1. Ownership
  2. Reference and Borrowing
  3. Lifetimes

Allows:

  • to avoid segmentation faults without using a garbage collector
  • to avoid dataraces while having threads