This blog is a summay of Chapter 2.6 and 2.7 of Rust Course (https://course.rs/) match expression The match expression follows the grammar below: match target { pattern1 => expression1, // returns expression 1 if target matches pattern1 pa...