Option & unwrap
In the last example, we showed that we can induce program failure at will. We told our program to panic
if we drink a sugary lemonade. But what if we expect some drink but donât receive one? That case would be just as bad, so it needs to be handled!
We could test this against the null string (""
) as we do with a lemonade. Since weâre using Rust, letâs instead have the compiler point out cases where thereâs no drink.
An enum
called Option<T>
in the std
library is used when absence is a possibility. It manifests itself as one of two âoptionsâ:
Some(T)
: An element of typeT
was foundNone
: No element was found
These cases can either be explicitly handled via match
or implicitly with unwrap
. Implicit handling will either return the inner element or panic
.
Note that itâs possible to manually customize panic
with expect, but unwrap
otherwise leaves us with a less meaningful output than explicit handling. In the following example, explicit handling yields a more controlled result while retaining the option to panic
if desired.
// 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."), Some(inner) => println!("{}? How nice.", inner), None => println!("No drink? Oh well."), }}// Others will \`panic\` before drinking sugary drinks.// All drinks are handled implicitly using \`unwrap\`.fn drink(drink: Option<&str>) { // \`unwrap\` returns a \`panic\` when it receives a \`None\`. let inside = drink.unwrap(); if inside == "lemonade" { panic!("AAAaaaaa!!!!"); } println!("I love {}s!!!!!", inside);}fn main() { let water = Some("water"); let lemonade = Some("lemonade"); let void = None; give_adult(water); give_adult(lemonade); give_adult(void); let coffee = Some("coffee"); let nothing = None; drink(coffee); drink(nothing);}
Compiling playground v0.0.1 (/playground)
Finished \`dev\` profile [unoptimized + debuginfo] target(s) in 0.62s
Running \`target/debug/playground\`
thread 'main' panicked at src/main.rs:16:24:
called \`Option::unwrap()\` on a \`None\` value
note: run with \`RUST_BACKTRACE=1\` environment variable to display a backtrace
water? How nice.
Yuck! Too sugary.
No drink? Oh well.
I love coffees!!!!!