c_spk
c_spk

Reputation: 179

"cannot move out of borrowed context" and "use of moved value"

I have the following code:

pub enum Direction {
    Up, Right, Down, Left, None
}

struct Point {
    y: i32,
    x: i32
}

pub struct Chain {
    segments: Vec<Point>,
    direction: Direction
}

and later I implement the following function:

fn turn (&mut self, dir: Direction) -> i32 {
    use std::num::SignedInt;

    if dir == self.direction { return 0; }
    else if SignedInt::abs(dir as i32 - self.direction as i32) == 2 { return -1; }
    else {
        self.direction = dir;
        return 1;
    }
}

I get the error:

error: cannot move out of borrowed content
foo.rs:45       else if SignedInt::abs(dir as i32 - self.direction as i32) == 2 { return 1; }
                                                        ^~~~
foo.rs:47:21: 47:24 error: use of moved value: `dir`
foo.rs:47           self.direction = dir;
                                         ^~~
foo.rs:45:26: 45:29 note: `dir` moved here because it has type `foo::Direction`, which is non-copyable
foo.rs:45       else if SignedInt::abs(dir as i32 - self.direction as i32) == 2 { return 1; }

I've read about Rust ownership and borrowing, but I still don't really understand them, therefore I cannot fix this code. Could someone give me a working variant of what I pasted?

Upvotes: 1

Views: 1544

Answers (1)

user395760
user395760

Reputation:

As the error message says:

dir moved here because it has type foo::Direction, which is non-copyable

No type is copyable by default, the author has to opt into the marker trait Copy. You almost certainly want Direction to be copyable, so add #[derive(Copy)] to the definition. Point can probably be Copy as well.

Upvotes: 3

Related Questions