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


Rust IntoInnerError.into_parts用法及代码示例


本文简要介绍rust语言中 std::io::IntoInnerError.into_parts 的用法。

用法

pub fn into_parts(self) -> (Error, W)

使用 IntoInnerError 并返回导致对 BufWriter::into_inner() 的调用失败的错误以及基础编写器。

这可以用来简单地获得潜在错误的所有权;它还可以用于高级错误恢复。

示例

use std::io::{BufWriter, ErrorKind, Write};

let mut not_enough_space = [0u8; 10];
let mut stream = BufWriter::new(not_enough_space.as_mut());
write!(stream, "this cannot be actually written").unwrap();
let into_inner_err = stream.into_inner().expect_err("now we discover it's too small");
let (err, recovered_writer) = into_inner_err.into_parts();
assert_eq!(err.kind(), ErrorKind::WriteZero);
assert_eq!(recovered_writer.buffer(), b"t be actually written");

相关用法


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