本文简要介绍rust语言中 core::result::Result.as_deref_mut
的用法。
用法
pub fn as_deref_mut(&mut self) -> Result<&mut T::Target, &mut E>
从 Result<T, E>
(或 &mut Result<T, E>
)转换为 Result<&mut <T as DerefMut>::Target, &mut E>
。
通过 DerefMut
强制原始 Result
的 Ok
变体并返回新的 Result
。
例子
let mut s = "HELLO".to_string();
let mut x: Result<String, u32> = Ok("hello".to_string());
let y: Result<&mut str, &mut u32> = Ok(&mut s);
assert_eq!(x.as_deref_mut().map(|x| { x.make_ascii_uppercase(); x }), y);
let mut i = 42;
let mut x: Result<String, u32> = Err(42);
let y: Result<&mut str, &mut u32> = Err(&mut i);
assert_eq!(x.as_deref_mut().map(|x| { x.make_ascii_uppercase(); x }), y);
相关用法
- Rust Result.as_deref用法及代码示例
- Rust Result.as_mut用法及代码示例
- Rust Result.as_ref用法及代码示例
- Rust Result.and_then用法及代码示例
- Rust Result.and用法及代码示例
- Rust Result.unwrap_or_else用法及代码示例
- Rust Result.unwrap_or_default用法及代码示例
- Rust Result.map_or用法及代码示例
- Rust Result.err用法及代码示例
- Rust Result.is_err用法及代码示例
- Rust Result.into_ok用法及代码示例
- Rust Result.cloned用法及代码示例
- Rust Result.unwrap_err用法及代码示例
- Rust Result.expect用法及代码示例
- Rust Result.map_err用法及代码示例
- Rust Result.map用法及代码示例
- Rust Result.iter用法及代码示例
- Rust Result.into_ok_or_err用法及代码示例
- Rust Result.into_err用法及代码示例
- Rust Result.or用法及代码示例
- Rust Result.ok用法及代码示例
- Rust Result.transpose用法及代码示例
- Rust Result.iter_mut用法及代码示例
- Rust Result.contains用法及代码示例
- Rust Result.or_else用法及代码示例
注:本文由纯净天空筛选整理自rust-lang.org大神的英文原创作品 core::result::Result.as_deref_mut。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。