本文简要介绍rust语言中 Struct std::sync::mpsc::IntoIter
的用法。
用法
pub struct IntoIter<T> { /* fields omitted */ }
消息上的拥有迭代器std::sync::mpsc::Receiver, 由...制作接收者::into_iter.
每当调用 next
时,此迭代器将阻塞,等待新消息,如果相应通道已挂起,则将返回 None
。
例子
use std::sync::mpsc::channel;
use std::thread;
let (send, recv) = channel();
thread::spawn(move || {
send.send(1u8).unwrap();
send.send(2u8).unwrap();
send.send(3u8).unwrap();
});
for x in recv.into_iter() {
println!("Got: {}", x);
}
相关用法
- Rust IntoIter.as_mut_slice用法及代码示例
- Rust IntoIter.new用法及代码示例
- Rust IntoIterator.into_iter用法及代码示例
- Rust IntoIter.as_slice用法及代码示例
- Rust IntoIterator用法及代码示例
- Rust IntoIter用法及代码示例
- Rust IntoInnerError.error用法及代码示例
- Rust IntoInnerError.into_inner用法及代码示例
- Rust IntoInnerError.into_parts用法及代码示例
- Rust IntoInnerError.into_error用法及代码示例
- Rust IntoInnerError用法及代码示例
- Rust IntoKeys用法及代码示例
- Rust Into用法及代码示例
- Rust IntoValues用法及代码示例
- Rust IntoRawFd.into_raw_fd用法及代码示例
- Rust IntErrorKind用法及代码示例
- Rust Intersection用法及代码示例
- Rust Infallible用法及代码示例
- Rust Incoming用法及代码示例
- Rust Instant.checked_duration_since用法及代码示例
- Rust Index用法及代码示例
- Rust Instant.now用法及代码示例
- Rust Instant.saturating_duration_since用法及代码示例
- Rust Instant.duration_since用法及代码示例
- Rust Instant用法及代码示例
注:本文由纯净天空筛选整理自rust-lang.org大神的英文原创作品 Struct std::sync::mpsc::IntoIter。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。