let o: Option<String> = Some(String::from("unwrap() moves the Option's value")); let s = o.unwrap(); //moved println!("{}", s); //println!(
確定! 回上一頁