検索

phrase: max: clip:
target: order:
Results of 1 - 2 of about 2 for drink (0.006 sec.)
Option と unwrap - Rust By Example 日本語版 11228
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... 。 // The adult has seen it all, and can handle any drink well. // All drinks are handled explicitly using ` ... は`match`を用いて手動で処理されます。 fn give_adult(drink: Option<&str>) { // Specify a course of action for ... each case. match drink { Some("lemonade") => println!("Yuck! Too sugary." ... tln!("{}? How nice.", inner), None => println!("No drink? Oh well."), } } // Others will `panic` before dri ...
https://man.plustar.jp/rust/example/error/option_unwrap.html - [similar]
panic - Rust By Example 日本語版 7485
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... 件に対して明示的に panic を呼び出してみましょう。 fn drink(beverage: &str) { // You shouldn't drink too much ... shing {} is all I need.", beverage); } fn main() { drink("water"); drink("lemonade"); } 関連キーワード: pan ... lt , Example , Rust , By , Option , テストケース , drink ...
https://man.plustar.jp/rust/example/error/panic.html - [similar]
PREV 1 NEXT