Glossary coding Term Page

move

Transferring ownership from one variable to another

move #coding#rust
Korean version

Related Concepts

Core Idea

move is Transferring ownership from one variable to another, after which the original can no longer use the value. It usually makes the most sense alongside Scope, drop, Copy trait.

Why It Matters Here

Mathbong reuses this term across rust posts as shared vocabulary.

Posts Mentioning This Concept