The _ has a special meaning in pattern matching, if all the other patterns do not match, it defaults to _.Note: match body (also known as match arms) should always ensure that all possible cases are being handled. If all possible cases are not handled, the Rust program fails to ...