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


Rust IntoInnerError.into_error用法及代码示例


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

用法

pub fn into_error(self) -> Error

使用 IntoInnerError 并返回导致调用 BufWriter::into_inner() 失败的错误。与 error 不同,这可用于获取底层错误的所有权。

示例

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 = into_inner_err.into_error();
assert_eq!(err.kind(), ErrorKind::WriteZero);

相关用法


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