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


Rust IntoIter用法及代码示例


本文简要介绍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-lang.org大神的英文原创作品 Struct std::sync::mpsc::IntoIter。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。