#Rust ```rust let a = Some("a".to_string()); // Option<String> let b = a.as_deref(); // Option<&str> ```