EN | DE

Stage 6.2: Ownership

Instantiating a type and binding it to a variable name creates a memory resource that the Rust compiler will validate through its whole lifetime. The bound variable is called the resource's owner.

Ownership is a very unique feature and the reason for Rust's memory safety.

Further information: