zk/tests/fixtures/full-sample/88el.md
2022-01-10 14:28:14 +01:00

230 B

Ownership in Rust

Ownership is one of Rust's most unique features and replaces efficiently a GC for memory management.

The Ownership is a method to manage data on the Heap (The Stack and the Heap).

:programming:rust: