本文简要介绍rust语言中 Type Definition std::thread::Result
的用法。
用法
pub type Result<T> = Result<T, Box<dyn Any + Send + 'static>>;
线程的专用 Result
类型。
指示线程退出的方式。
Result::Err
变体中包含的值是线程Panics的值;也就是说,调用panic!
宏的参数。与正常错误不同,此值不实现 Error
特征。
因此,处理线程Panics的明智方法是:
- 用
std::panic::resume_unwind
传播Panics - 或者,如果线程旨在成为应该隔离系统级故障的子系统边界,则匹配
Err
变体并以适当的方式处理Panics
一个在没有Panics的情况下完成的线程被认为是成功退出。
例子
匹配加入线程的结果:
use std::{fs, thread, panic};
fn copy_in_thread() -> thread::Result<()> {
thread::spawn(|| {
fs::copy("foo.txt", "bar.txt").unwrap();
}).join()
}
fn main() {
match copy_in_thread() {
Ok(_) => println!("copy succeeded"),
Err(e) => panic::resume_unwind(e),
}
}
相关用法
- Rust Result.unwrap_or_else用法及代码示例
- Rust Result.as_deref_mut用法及代码示例
- Rust Result.unwrap_or_default用法及代码示例
- Rust Result.as_mut用法及代码示例
- Rust Result.map_or用法及代码示例
- Rust Result.err用法及代码示例
- Rust Result用法及代码示例
- 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.and_then用法及代码示例
- 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 Result.expect_err用法及代码示例
注:本文由纯净天空筛选整理自rust-lang.org大神的英文原创作品 Type Definition std::thread::Result。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。