本文简要介绍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 Read.read用法及代码示例
- Rust Read.by_ref用法及代码示例
- Rust Read.chain用法及代码示例
- Rust Read.read_to_string用法及代码示例
- Rust Read.read_to_end用法及代码示例
- Rust Read.bytes用法及代码示例
- Rust Read.read_exact用法及代码示例
- Rust Read用法及代码示例
- Rust Result.unwrap_or_else用法及代码示例
- Rust RefCell.try_borrow_unguarded用法及代码示例
- Rust Ref.map用法及代码示例
- Rust RefMut.leak用法及代码示例
- Rust Ref.filter_map用法及代码示例
- Rust RefCell.replace_with用法及代码示例
- Rust Receiver.recv用法及代码示例
- Rust Result.as_deref_mut用法及代码示例
- Rust Result.unwrap_or_default用法及代码示例
- Rust Result.as_mut用法及代码示例
- Rust Result.map_or用法及代码示例
- Rust Result.err用法及代码示例
- Rust Receiver.recv_timeout用法及代码示例
- Rust Receiver.try_recv用法及代码示例
- Rust Result用法及代码示例
- Rust Result.is_err用法及代码示例
- Rust Result.into_ok用法及代码示例
注:本文由纯净天空筛选整理自rust-lang.org大神的英文原创作品 std::io::Read.take。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。