Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I pass a reference to mutable data in Rust?

I want to create a mutable struct on the stack and mutate it from helper functions.

#[derive(Debug)]
struct Game {
    score: u32,
}

fn addPoint(game: &mut Game) {
    game.score += 1;
}

fn main() {
    let mut game = Game { score: 0 };

    println!("Initial game: {:?}", game);

    // This works:
    game.score += 1;

    // This gives a compile error:
    addPoint(&game);

    println!("Final game:   {:?}", game);
}

Trying to compile this gives:

error[E0308]: mismatched types
  --> src/main.rs:19:14
   |
19 |     addPoint(&game);
   |              ^^^^^ types differ in mutability
   |
   = note: expected type `&mut Game`
              found type `&Game`

What am I doing wrong?

like image 807
Wilfred Hughes Avatar asked May 09 '14 21:05

Wilfred Hughes


People also ask

How do you pass by reference in Rust?

Syntax. An ampersand ( & ) is used with a variable's name while passing its reference instead of its value to a function. The function's signature should also have an ampersand with the type of argument that receives the reference.

What is a mutable reference in Rust?

Back to Rust. A mutable reference is a borrow to any type mut T , allowing mutation of T through that reference. The below code illustrates the example of a mutable variable and then mutating its value through a mutable reference ref_i .

How do you borrow as mutable in Rust?

First, we change s to be mut . Then we create a mutable reference with &mut s where we call the change function, and update the function signature to accept a mutable reference with some_string: &mut String . This makes it very clear that the change function will mutate the value it borrows.

Does Rust pass by reference or value?

Rust allows you to pass a reference to the variable instead. This allows the parent function to keep the scope of the original variable whilst allowing a child function to use it.


1 Answers

The reference needs to be marked as mutable too:

addPoint(&mut game);
like image 172
Wilfred Hughes Avatar answered Oct 08 '22 23:10

Wilfred Hughes