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


Rust Chain.get_ref用法及代码示例


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

用法

pub fn get_ref(&self) -> (&T, &U)

在此 Chain 中获取对基础阅读器的引用。

例子

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

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

    let chain = foo_file.chain(bar_file);
    let (foo_file, bar_file) = chain.get_ref();
    Ok(())
}

相关用法


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