[[Option.as_deref]]を使う。 ```rust let x: Option<String> = Some("hey".to_owned()); assert_eq!(x.as_deref(), Some("hey")); ```