Function to_str

Source
pub fn to_str(s: String) -> &'static str
Examples found in repository?
examples/hello.rs (line 5)
3fn main() {
4    let option_value = Some(123);
5    let v = option_value.map_or("", |v| to_str(v.to_string()));
6    assert_eq!(v, "123");
7}