Rust match expression
last modified February 19, 2025
In this article we show how to use the match
expression in Rust.
Match expression
The match
expression in Rust is a powerful control flow operator that allows you to compare a value against a series of patterns and execute code based on which pattern matches. It is similar to the switch
statement in other languages but more powerful and flexible.
The syntax of the match
expression is as follows:
match value { pattern1 => expression1, pattern2 => expression2, ... _ => default_expression, }
The match
expression checks the value
against each pattern in order. If a pattern matches, the corresponding expression is executed. The underscore _
is a catch-all pattern that matches any value, similar to the default
case in a switch
statement.
Simple example
The following is a simple Rust example using the match
expression.
fn main() { let number = 3; match number { 1 => println!("One"), 2 => println!("Two"), 3 => println!("Three"), _ => println!("Other"), } }
The program defines a variable number
and uses the
match
expression to check its value.
match number { 1 => println!("One"), 2 => println!("Two"), 3 => println!("Three"), _ => println!("Other"), }
The match
expression checks the value of number
against each pattern. If the value matches a pattern, the corresponding code
block is executed. The underscore _
is used as a default case.
$ cargo run -q Three
Match guards
The if conditions in the match arms are called match guards. They allow for more complex matching by adding additional conditional checks to the patterns.
use rand::Rng; fn main() { let mut rng = rand::thread_rng(); let r = rng.gen_range(-5..=5); match r { x if x > 0 => println!("The number {} is positive", x), 0 => println!("The number is zero"), _ => println!("The number {} is negative", r), } }
We use a random number generator to generate a random number r
in
the range -5 to 5.
x if x > 0 => println!("The number {} is positive", x),
This arm matches any value of r
that is greater than 0. The match
guard if x > 0
ensures that this arm only executes when
r
is positive. The variable x
is bound to the value of
r
and printed.
0 => println!("The number is zero"),
This arm matches the specific value 0 and prints a message indicating that the number is zero.
_ => println!("The number {} is negative", r),
This arm matches all other values (i.e., those that do not satisfy the previous
conditions). The underscore _
is a catch-all pattern, and it prints
a message indicating that the number is negative, using the value of
r
.
Multiple options in arms
We can group multiple options with |
.
fn main() { let grades = vec!["A", "B", "C", "D", "E", "F", "FX"]; for grade in grades { match grade { "A" | "B" | "C" | "D" | "E" | "F" => println!("passed"), "FX" => println!("failed"), _ => println!("invalid"), } } }
Using the |
operator, we group grades A through F into one
arm.
$ cargo run -q passed passed passed passed passed passed failed
Matching with enums
The match
expression is often used with enums in Rust. Enums allow
you to define a type by enumerating its possible variants.
enum Direction { Up, Down, Left, Right, } fn main() { let direction = Direction::Up; match direction { Direction::Up => println!("Going up!"), Direction::Down => println!("Going down!"), Direction::Left => println!("Going left!"), Direction::Right => println!("Going right!"), } }
In this example, we define an enum Direction
with four variants. We
then use the match
expression to handle each variant.
match direction { Direction::Up => println!("Going up!"), Direction::Down => println!("Going down!"), Direction::Left => println!("Going left!"), Direction::Right => println!("Going right!"), }
The match
expression checks the value of direction
and
executes the corresponding code block based on the variant.
$ cargo run -q Going up!
Matching with Option
The Option
type in Rust is used to represent a value that can
either be Some
(containing a value) or None
(no
value). The match
expression is commonly used to handle
Option
types.
fn main() { let some_value = Some(5); match some_value { Some(value) => println!("Got a value: {}", value), None => println!("Got nothing"), } }
In this example, we use the match
expression to handle an
Option
type.
match some_value { Some(value) => println!("Got a value: {}", value), None => println!("Got nothing"), }
The match
expression checks if some_value
is
Some
or None
and executes the corresponding code
block.
$ cargo run -q Got a value: 5
Matching with Result
The Result
type in Rust is used for error handling. It can either
be Ok
(containing a value) or Err
(containing an
error). The match
expression is commonly used to handle
Result
types.
fn main() { let result: Result<i32, &str> = Ok(10); match result { Ok(value) => println!("Success: {}", value), Err(error) => println!("Error: {}", error), } }
In this example, we use the match
expression to handle a Result
type.
match result { Ok(value) => println!("Success: {}", value), Err(error) => println!("Error: {}", error), }
The match
expression checks if result
is
Ok
or Err
and executes the corresponding code block.
$ cargo run -q Success: 10
Matching with patterns
The match
expression can also be used with more complex patterns,
such as ranges, tuples, and structs.
fn main() { let pair = (0, -2); match pair { (0, y) => println!("First is 0 and y is {}", y), (x, 0) => println!("x is {} and second is 0", x), _ => println!("It doesn't matter what they are"), } }
In this example, we use the match
expression to match against a tuple.
match pair { (0, y) => println!("First is 0 and y is {}", y), (x, 0) => println!("x is {} and second is 0", x), _ => println!("It doesn't matter what they are"), }
The match
expression checks the values of the tuple and executes
the corresponding code block based on the pattern.
$ cargo run -q First is 0 and y is -2
In this article, we have explored the match
expression in Rust. We
have seen how to use it with simple values, enums, Option
,
Result
, and more complex patterns. The match
expression is a powerful tool for control flow in Rust, allowing you to handle
different cases in a clear and concise way.
Author
List all Rust tutorials.