[[Rust]]の[[パターンマッチ (Rust)|パターンマッチ]]におけるパターンとコードのこと。具体的には以下の`{}`内のそれぞれ。 ```rust match coin { Coin::Penny => { ... }, Coin::Nickel => { ... }, } ```