Recent and future pattern matching improvements
https://blog.rust-lang.org/inside-rust/2020/03/04/recent-future-pattern-matching-improvements.html [blog.rust-lang.org]
2020-03-07 18:39
Much of writing software revolves around checking if some data has some shape (“pattern“), extracting information from it, and then reacting if there was a match. To facilitate this, many modern languages, Rust included, support what is known as “pattern matching”.
source: L