當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。