本文简要介绍rust语言中 std::ops::FromResidual.from_residual
的用法。
用法
fn from_residual(residual: R) -> Self
从兼容的Residual
类型构造类型。
这应该与branch
方法使得应用?
运算符将返回等效的残差:FromResidual::from_residual(r).branch() --> ControlFlow::Break(r)
。 (它一定不是一个完全相同的涉及互变时的残差。)
例子
#![feature(try_trait_v2)]
use std::ops::{ControlFlow, FromResidual};
assert_eq!(Result::<String, i64>::from_residual(Err(3_u8)), Err(3));
assert_eq!(Option::<String>::from_residual(None), None);
assert_eq!(
ControlFlow::<_, String>::from_residual(ControlFlow::Break(5)),
ControlFlow::Break(5),
);
相关用法
- Rust FromRawFd.from_raw_fd用法及代码示例
- Rust FromUtf16Error用法及代码示例
- Rust FromUtf8Error.as_bytes用法及代码示例
- Rust FromVecWithNulError.into_bytes用法及代码示例
- Rust FromBytesWithNulError用法及代码示例
- Rust From用法及代码示例
- Rust FromUtf8Error.into_bytes用法及代码示例
- Rust FromSecsError用法及代码示例
- Rust FromUtf8Error用法及代码示例
- Rust FromUtf8Error.utf8_error用法及代码示例
- Rust FromVecWithNulError用法及代码示例
- Rust FromIterator用法及代码示例
- Rust FromStr.from_str用法及代码示例
- Rust FromStr用法及代码示例
- Rust FromVecWithNulError.as_bytes用法及代码示例
- Rust FromIterator.from_iter用法及代码示例
- Rust Formatter.precision用法及代码示例
- Rust Formatter.debug_list用法及代码示例
- Rust Formatter.sign_minus用法及代码示例
- Rust File用法及代码示例
- Rust FileExt.read_exact_at用法及代码示例
- Rust FileTypeExt.is_char_device用法及代码示例
- Rust File.open用法及代码示例
- Rust File.sync_data用法及代码示例
- Rust Formatter.write_fmt用法及代码示例
注:本文由纯净天空筛选整理自rust-lang.org大神的英文原创作品 std::ops::FromResidual.from_residual。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。