当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Rust Result.unwrap_or用法及代码示例


本文简要介绍rust语言中 core::result::Result.unwrap_or 的用法。

用法

pub fn unwrap_or(self, default: T) -> T

返回包含的 Ok 值或提供的默认值。

传递给unwrap_or 的参数被热切评估;如果要传递函数调用的结果,建议使用 unwrap_or_else ,它是惰性求值的。

例子

基本用法:

let default = 2;
let x: Result<u32, &str> = Ok(9);
assert_eq!(x.unwrap_or(default), 9);

let x: Result<u32, &str> = Err("error");
assert_eq!(x.unwrap_or(default), default);

相关用法


注:本文由纯净天空筛选整理自rust-lang.org大神的英文原创作品 core::result::Result.unwrap_or。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。