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


Rust Try.from_output用法及代码示例


本文简要介绍rust语言中 std::ops::Try.from_output 的用法。

用法

fn from_output(output: Self::Output) -> Self

从其Output 类型构造类型。

这应该与 branch 方法一致地实现,以便应用 ? 运算符将取回原始值:Try::from_output(x).branch() --> ControlFlow::Continue(x)

例子

#![feature(try_trait_v2)]
use std::ops::Try;

assert_eq!(<Result<_, String> as Try>::from_output(3), Ok(3));
assert_eq!(<Option<_> as Try>::from_output(4), Some(4));
assert_eq!(
    <std::ops::ControlFlow<String, _> as Try>::from_output(5),
    std::ops::ControlFlow::Continue(5),
);

assert_eq!(Option::from_output(4)?, 4);

// This is used, for example, on the accumulator in `try_fold`:
let r = std::iter::empty().try_fold(4, |_, ()| -> Option<_> { unreachable!() });
assert_eq!(r, Some(4));

相关用法


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