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


Rust Read.take用法及代碼示例


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

用法

fn take(self, limit: u64) -> Take<Self> where    Self: Sized,

創建一個適配器,最多可以從中讀取 limit 個字節。

此函數返回 Read 的新實例,該實例最多讀取 limit 字節,之後它將始終返回 EOF ( Ok(0) )。任何讀取錯誤都不會計入讀取的字節數,將來對 read() 的調用可能會成功。

例子

File 實現 Read

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

fn main() -> io::Result<()> {
    let mut f = File::open("foo.txt")?;
    let mut buffer = [0; 5];

    // read at most five bytes
    let mut handle = f.take(5);

    handle.read(&mut buffer)?;
    Ok(())
}

相關用法


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