标签: rust optional
在Scala中,我可以使用Option作为从val threeOpt = Some(3) val shouldBeThree = threeOpt.getOrElse(-1) // got 3 获取默认值的便捷方法,在Rust中这等效于什么?
Option
val threeOpt = Some(3) val shouldBeThree = threeOpt.getOrElse(-1) // got 3
echo str_replace( '__DUMMYSTRING__' , $newHTMLCODE, $HTMLCodeFormDataBase);
答案 0 :(得分:6)
您可以使用unwrap_or或unwrap_or_else
unwrap_or
unwrap_or_else