Content-Length: 24308 | pFad | https://doc.rust-lang.org/std/string/../error/../string/../../../std/../error_codes/./E0510.html

E0510 - Error codes index

Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Error code E0510

The matched value was assigned in a match guard.

Erroneous code example:

#![allow(unused)]
fn main() {
let mut x = Some(0);
match x {
    None => {}
    Some(_) if { x = None; false } => {} // error!
    Some(_) => {}
}
}

When matching on a variable it cannot be mutated in the match guards, as this could cause the match to be non-exhaustive.

Here executing x = None would modify the value being matched and require us to go “back in time” to the None arm. To fix it, change the value in the match arm:

#![allow(unused)]
fn main() {
let mut x = Some(0);
match x {
    None => {}
    Some(_) => {
        x = None; // ok!
    }
}
}








ApplySandwichStrip

pFad - (p)hone/(F)rame/(a)nonymizer/(d)eclutterfier!      Saves Data!


--- a PPN by Garber Painting Akron. With Image Size Reduction included!

Fetched URL: https://doc.rust-lang.org/std/string/../error/../string/../../../std/../error_codes/./E0510.html

Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy