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


Rust Result.and用法及代码示例


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

用法

pub fn and<U>(self, res: Result<U, E>) -> Result<U, E>

如果结果为 Ok ,则返回 res ,否则返回 self Err 值。

例子

基本用法:

let x: Result<u32, &str> = Ok(2);
let y: Result<&str, &str> = Err("late error");
assert_eq!(x.and(y), Err("late error"));

let x: Result<u32, &str> = Err("early error");
let y: Result<&str, &str> = Ok("foo");
assert_eq!(x.and(y), Err("early error"));

let x: Result<u32, &str> = Err("not a 2");
let y: Result<&str, &str> = Err("late error");
assert_eq!(x.and(y), Err("not a 2"));

let x: Result<u32, &str> = Ok(2);
let y: Result<&str, &str> = Ok("different result type");
assert_eq!(x.and(y), Ok("different result type"));

相关用法


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