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


Rust Result.copied用法及代码示例


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

用法

pub fn copied(self) -> Result<T, E>

通过复制Ok 部分的内容将Result<&T, E> 映射到Result<T, E>

例子

#![feature(result_copied)]
let val = 12;
let x: Result<&i32, i32> = Ok(&val);
assert_eq!(x, Ok(&12));
let copied = x.copied();
assert_eq!(copied, Ok(12));

相关用法


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