本文簡要介紹rust語言中 std::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 Result.unwrap_or_else用法及代碼示例
- Rust Result.unwrap_or_default用法及代碼示例
- Rust Result.unwrap_or用法及代碼示例
- Rust Result.unwrap_err用法及代碼示例
- Rust Result.unwrap_unchecked用法及代碼示例
- Rust Result.unwrap_err_unchecked用法及代碼示例
- Rust Result.unwrap用法及代碼示例
- Rust Result.as_deref_mut用法及代碼示例
- Rust Result.as_mut用法及代碼示例
- Rust Result.map_or用法及代碼示例
- Rust Result.err用法及代碼示例
- Rust Result.is_err用法及代碼示例
- Rust Result.into_ok用法及代碼示例
- Rust Result.cloned用法及代碼示例
- Rust Result.expect用法及代碼示例
- Rust Result.map_err用法及代碼示例
- Rust Result.map用法及代碼示例
- Rust Result.iter用法及代碼示例
- Rust Result.and_then用法及代碼示例
- Rust Result.into_ok_or_err用法及代碼示例
- Rust Result.into_err用法及代碼示例
- Rust Result.or用法及代碼示例
- Rust Result.ok用法及代碼示例
- Rust Result.transpose用法及代碼示例
- Rust Result.iter_mut用法及代碼示例
注:本文由純淨天空篩選整理自rust-lang.org大神的英文原創作品 std::result::Result.unwrap_or。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。