Chapter 3: Ownership - The Heart of Rust

Ownership is Rust's most distinctive feature and the foundation of its memory safety guarantees. Understanding ownership is the key to unlocking Rust's power. This chapter explains how ownership works, why it matters, and how to use it effectively.

The Central Idea

In Rust, every value has exactly one owner. When the owner goes out of scope, the value is automatically freed. This simple rule eliminates entire categories of bugs: memory leaks, dangling pointers, and use-after-free errors.

3.1 Understanding Memory: Stack vs Heap

Before diving into ownership, you need to understand where data lives in memory. This fundamental knowledge applies to all programming languages, but Rust makes you think about it explicitly.

Stack (Fast)

x42
y3.14
flagtrue

Fixed size, LIFO, automatic cleanup

Heap (Flexible)

[0x7f..]"hello world"
[0x8a..][1, 2, 3, 4, 5]

Dynamic size, requires manual or automatic management

The Stack

The stack is a region of memory that operates like a stack of plates: last in, first out (LIFO). It's incredibly fast because:

fn main() {
    let x = 42;        // x is pushed onto the stack
    let y = 3.14;      // y is pushed onto the stack
    let z = true;      // z is pushed onto the stack
}  // z, y, x are popped off the stack (in that order)

The Heap

The heap is for data that can grow or shrink at runtime, or whose size isn't known at compile time:

fn main() {
    let s = String::from("hello");  // String data is on the heap
    // s variable (with pointer) is on the stack
    // The actual "hello" bytes are on the heap
}
Type Location Size
Integers (i32, u64, etc.) Stack Fixed
Floats (f32, f64) Stack Fixed
Booleans (bool) Stack Fixed
Characters (char) Stack Fixed (4 bytes)
Tuples (of fixed types) Stack Fixed
String Stack (metadata) + Heap (data) Dynamic
Vec<T> Stack (metadata) + Heap (data) Dynamic

3.2 The Three Rules of Ownership

Rust's ownership system is governed by three fundamental rules. These rules are enforced at compile time, meaning violations are caught before your code ever runs.

1 Each value in Rust has exactly one owner.
let s = String::from("hello");  // s owns the String
// There is exactly one variable that owns this string data
2 There can only be one owner at a time.
let s1 = String::from("hello");
let s2 = s1;  // Ownership MOVES from s1 to s2
// s1 is no longer valid - s2 is now the sole owner
3 When the owner goes out of scope, the value is dropped.
{
    let s = String::from("hello");
    // s is valid here
}  // s goes out of scope, "drop" is called
   // Memory is automatically freed
Why This Matters

These three rules eliminate:

3.3 Move Semantics

When you assign a value to another variable, ownership can move. This is fundamental to understanding Rust.

Stack Types: Copy

Simple types that live entirely on the stack are copied:

let x = 5;
let y = x;  // x is COPIED to y

println!("x = {}, y = {}", x, y);  // Both are valid!

This works because copying an integer is cheap—it's just copying a few bytes on the stack.

Heap Types: Move

For types that use heap memory, assignment moves ownership:

let s1 = String::from("hello");
let s2 = s1;  // Ownership MOVES from s1 to s2

println!("{}", s2);  // OK: s2 owns the data
// println!("{}", s1);  // ERROR: s1 is no longer valid!

Before Move

s1ptr → "hello"

After Move

s1invalid
s2ptr → "hello"
Why Not Just Copy?

Copying heap data would require allocating new memory and copying all the bytes. For large data structures, this could be slow and wasteful. By default, Rust moves ownership instead, which is a constant-time operation.

3.4 Clone: Explicit Deep Copy

When you actually need a deep copy of heap data, use the clone method:

let s1 = String::from("hello");
let s2 = s1.clone();  // Deep copy - both are independent

println!("s1 = {}, s2 = {}", s1, s2);  // Both valid!
Clone is Expensive

Cloning copies all heap data. For large data structures, this can be slow and use significant memory. Use clone() intentionally, not as a way to avoid learning ownership.

Copy vs Clone

Aspect Copy Clone
When it happens Implicit, automatic Explicit, must call .clone()
Performance Cheap (stack only) Potentially expensive (heap copy)
Types Integers, floats, bool, char, tuples String, Vec, custom types
Trait Copy Clone

3.5 Ownership and Functions

Passing a value to a function follows the same rules as assignment:

Moving into Functions

fn main() {
    let s = String::from("hello");
    takes_ownership(s);  // s is MOVED into the function

    // println!("{}", s);  // ERROR: s is no longer valid here

    let x = 5;
    makes_copy(x);  // x is COPIED (integers implement Copy)

    println!("{}", x);  // OK: x is still valid
}

fn takes_ownership(some_string: String) {
    println!("{}", some_string);
}  // some_string goes out of scope, memory is freed

fn makes_copy(some_integer: i32) {
    println!("{}", some_integer);
}  // some_integer goes out of scope, nothing special happens

Returning Values

Functions can return ownership:

fn main() {
    let s1 = gives_ownership();  // Ownership moves to s1

    let s2 = String::from("hello");
    let s3 = takes_and_gives_back(s2);  // s2 moves in, result moves to s3

    // s2 is invalid here, s1 and s3 are valid
}

fn gives_ownership() -> String {
    let s = String::from("yours");
    s  // Ownership moves to the caller
}

fn takes_and_gives_back(a_string: String) -> String {
    a_string  // Ownership moves back to the caller
}

3.6 The Drop Trait

When a value goes out of scope, Rust calls the drop function. This is where cleanup happens:

struct CustomSmartPointer {
    data: String,
}

impl Drop for CustomSmartPointer {
    fn drop(&mut self) {
        println!("Dropping CustomSmartPointer with data: {}", self.data);
    }
}

fn main() {
    let c = CustomSmartPointer {
        data: String::from("my stuff"),
    };
    println!("CustomSmartPointer created.");
}  // c goes out of scope here, "Dropping..." is printed
RAII: Resource Acquisition Is Initialization

Rust uses RAII (from C++) - resources are acquired when an object is created and released when it's destroyed. This guarantees cleanup even if errors occur. Files are closed, locks are released, memory is freed - all automatically.

3.7 Common Ownership Patterns

Pattern 1: Transfer and Use

fn process_data(data: String) -> String {
    // Process the data
    data.to_uppercase()
}

fn main() {
    let input = String::from("hello");
    let output = process_data(input);  // input moved, output received
    println!("{}", output);
}

Pattern 2: Return Multiple Values

fn calculate_length(s: String) -> (String, usize) {
    let length = s.len();
    (s, length)  // Return both the string and its length
}

fn main() {
    let s = String::from("hello");
    let (s, len) = calculate_length(s);
    println!("'{}' has length {}", s, len);
}
Awkward Pattern Alert

Having to return values just to give them back is tedious. In the next chapter, you'll learn about borrowing, which lets you use values without taking ownership.

3.8 Chapter Summary

Key Takeaways

3.9 Review Questions

Test Your Understanding

  1. What are the three rules of ownership in Rust?
  2. Explain the difference between stack and heap memory. Give examples of types stored in each.
  3. What happens when you assign a String to another variable? Why is this different from assigning an i32?
  4. When would you use .clone() on a String? What are the performance implications?
  5. What happens to ownership when you pass a String to a function? How can you continue using the value after the function call?
  6. What is the Drop trait and when is it called?

3.10 Looking Ahead

What's Next: Chapter 4 - Borrowing & Lifetimes

Having to transfer ownership every time you want to use a value is cumbersome. The next chapter introduces borrowing—a way to use values without taking ownership:

Korea Standardization Infrastructure Mapping

Korea operates a comprehensive standards governance system through inter-ministerial cooperation. National Standards Council (under Prime Minister's Office, per Framework Act on National Standards Article 5) coordinates KATS (Korean Agency for Technology and Standards), MFDS (Ministry of Food and Drug Safety), MOTIE (Ministry of Trade, Industry and Energy), MSIT (Ministry of Science and ICT), MOIS (Ministry of the Interior and Safety), MOE (Ministry of Environment), MOHW (Ministry of Health and Welfare), MND (Ministry of National Defense), MCST (Ministry of Culture, Sports and Tourism), MOFA (Ministry of Foreign Affairs), MOJ (Ministry of Justice), and FSC (Financial Services Commission). Accreditation and Testing: KOLAS (Korea Laboratory Accreditation Scheme) accredits 800+ testing laboratories. KAS (Korea Accreditation System) accredits 50+ certification bodies. KTC (Korea Testing Certification), KTR (Korea Testing & Research Institute), KTL (Korea Testing Laboratory), and KCL (Korea Conformity Laboratories) provide conformance testing. Telecom and Cyber: KCC (Korea Communications Commission), KCA (Korea Communications Agency), TTA (Telecommunications Technology Association), IITP (Institute for Information & Communications Technology Planning & Evaluation), NIPA (National IT Industry Promotion Agency), KISA (Korea Internet & Security Agency), KCMVP (Korea Cryptographic Module Validation Program), NIS (National Intelligence Service), NSR (National Security Research Institute), and NCSC (National Cyber Security Center). National R&D Centers: KIST, ETRI, KAIST, Seoul National University, Yonsei University, Korea University, POSTECH, UNIST, GIST, DGIST, KISTI, KIER, KIMM, KRICT, KFRI, KRIBB. International Standards Cooperation: ISO TC/SC Korean secretariats, IEC TC/SC Korean secretariats, ITU-T Study Group Korean chairs, 3GPP RAN/SA Korean chairs, IEEE 802 Korean chairs, W3C Korea office, OASIS Korea office, IETF Korea cooperation, OECD CSTP, UN ESCAP, APEC SCSC Korean cooperation. Korean Industrial Standards (KS) Catalog: KS X (Information) 25,000+, KS A (Basic) 15,000+, KS B (Machinery) 25,000+, KS C (Electrical) 18,000+, KS D (Metallurgy) 12,000+, KS E (Mining) 5,000+, KS F (Construction) 18,000+, KS H (Food) 8,000+, KS I (Environment) 5,000+, KS J (Biology) 3,000+, KS K (Textile) 15,000+, KS L (Ceramics) 7,000+, KS M (Chemistry) 12,000+, KS P (Medical) 5,000+, KS Q (Quality Mgmt) 4,000+, KS R (Transport) 12,000+, KS S (Service) 3,000+, KS T (Packaging) 4,000+, KS V (Shipbuilding) 5,000+, KS W (Aerospace) 3,000+ — totaling 220,000+ Korean Industrial Standards. Key Acts: Personal Information Protection Act (Act 19234, effective Sept 15, 2024), Electronic Government Act, Electronic Signature Act, Act on Promotion of Information and Communications Network Utilization and Information Protection, Information and Communications Infrastructure Protection Act, Data Industry Act, Public Data Act, AI Framework Act (Act 20212, effective July 2026), Industrial Technology Innovation Promotion Act, Framework Act on Science and Technology — 70+ Korean standardization-related laws.

Korea Digital Transformation Detailed Mapping

Korea operates digital transformation through a comprehensive governance system. Digital Government: Digital Platform Government Committee (established September 2022, under the President)·Ministry of the Interior and Safety Digital Government Bureau·e-Government Support Center·Gov.kr·National Citizen Service·KDIS (Korea Digital Information Society)·NIA (National Information Society Agency)·MOIS (Ministry of the Interior and Safety). K-DNS Infrastructure: Korea Internet & Security Agency (KISA) Korea Internet Center·KISA DNS Root Server·KRNIC (Korea Network Information Center)·BGP Korea·National Cyber Security Center (NCSC)·KCC (Korea Communications Commission)·MSIT (Ministry of Science and ICT)·NIA·NIPA. Korean Cloud Infrastructure: KT Cloud·NAVER Cloud (NCloud)·Samsung SDS Cloud·LG U+ Cloud·NHN Cloud·Kakao Enterprise Cloud·SK Telecom Cloud·KISA Cloud Security Assurance Program (CSAP)·KCMVP-validated cloud·ISMS-P (Information Security & Personal Information Management System). Korean Security Certifications: KISA ISMS-P certification·KCMVP (Korean Cryptographic Module Validation Program)·NIS (National Intelligence Service) "National Cryptographic Technology Operation Standards"·NCSC "National Cyber Security Strategy 2024-2028"·CC (Common Criteria) Korean evaluation bodies·EAL4·EAL5·KS X ISO/IEC 15408·19790·24759 Korean Profile. Korean Data Standards: NIA AI Hub·National Data Standardization Committee·Statistics Korea (KOSTAT)·MyData 4 Designated Combination Specialists (Samsung SDS, KICI, KOSTAT, KFTC)·National Institute of Korean Language·National Law Information Center·National Spatial Information Platform·National Spatial Data Center·Korean Spatial Information Standards. Finance and Fintech Standards: FSC (Financial Services Commission)·FSS (Financial Supervisory Service)·FIU (Financial Intelligence Unit)·BOK (Bank of Korea)·FSEC (Financial Security Institute)·KFTC (Korea Financial Telecommunications)·KSD (Korea Securities Depository)·KRX (Korea Exchange) 8-agency cooperation. 5G/6G Communications Infrastructure: 5G subscribers 35 million (2024)·5G base stations 350,000·6G commercialization target 2028·5G dedicated networks 16 operators·6G Acceleration Council (MSIT, 2024). K-Content: KOCCA (Korea Creative Content Agency)·MCST (Ministry of Culture, Sports and Tourism)·KCA (Korea Communications Agency)·Korea Culture Information Service Agency·Korean Film Archive·Korea Publishing Industry Promotion Agency. Data 3 Acts (Personal Information Protection Act·Credit Information Act·Telecommunications Network Act, 2020 enforcement)·Data Industry Act (2021)·Public Data Act (2013)·AI Framework Act (2026)·Digital Platform Government Framework Act (2024 proposed) — Korea digital transformation core legislation.