Function std::io::empty1.0.0[][src]

pub fn empty() -> Empty
Notable traits for Empty
impl Read for Empty
Expand description

为空的 reader 创建一个新的句柄。

从返回的 reader 进行的所有读取将返回 Ok(0)

Examples

不将任何内容读入缓冲区的一个令人悲伤的示例:

use std::io::{self, Read};

let mut buffer = String::new();
io::empty().read_to_string(&mut buffer).unwrap();
assert!(buffer.is_empty());
Run