当输出内容不重要时,从实现std::io::Read
特征的类型中读取的最佳方法是什么?
我看到的可能选项是:
前两个选项看起来并不理想,第三个选项可以,但不方便。
Rust是否提供了实现此目的的便捷方式?
答案 0 :(得分:9)
您可以使用io::copy()
,Read::take()
和io::sink()
来丢弃特定数量的字节:
let mut file = File::open("foo.txt").unwrap();
// Discard 27 bytes
io::copy(&mut file.by_ref().take(27), &mut io::sink());
// Read the rest
let mut interesting_contents = Vec::new();
file.read_to_end(&mut interesting_contents).unwrap();
在这里,我们还必须使用by_ref()
才能以后继续使用该文件。