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


Rust Read.chain用法及代码示例


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

用法

fn chain<R: Read>(self, next: R) -> Chain<Self, R> where    Self: Sized,

创建一个适配器,它将这个流与另一个链接。

返回的Read 实例将首先从该对象读取所有字节,直到遇到 EOF。之后的输出等价于 next 的输出。

例子

File 实现 Read

use std::io;
use std::io::prelude::*;
use std::fs::File;

fn main() -> io::Result<()> {
    let mut f1 = File::open("foo.txt")?;
    let mut f2 = File::open("bar.txt")?;

    let mut handle = f1.chain(f2);
    let mut buffer = String::new();

    // read the value into a String. We could use any Read method here,
    // this is just one example.
    handle.read_to_string(&mut buffer)?;
    Ok(())
}

相关用法


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