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


Rust Chain.get_mut用法及代碼示例


本文簡要介紹rust語言中 std::io::Chain.get_mut 的用法。

用法

pub fn get_mut(&mut self) -> (&mut T, &mut U)

在此 Chain 中獲取對底層讀取器的可變引用。

應注意避免修改底層讀取器的內部 I/O 狀態,因為這樣做可能會破壞此 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 mut chain = foo_file.chain(bar_file);
    let (foo_file, bar_file) = chain.get_mut();
    Ok(())
}

相關用法


注:本文由純淨天空篩選整理自rust-lang.org大神的英文原創作品 std::io::Chain.get_mut。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。