当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Rust BufWriter.capacity用法及代码示例


本文简要介绍rust语言中 std::io::BufWriter.capacity 的用法。

用法

pub fn capacity(&self) -> usize

返回内部缓冲区在不刷新的情况下可以容纳的字节数。

例子

use std::io::BufWriter;
use std::net::TcpStream;

let buf_writer = BufWriter::new(TcpStream::connect("127.0.0.1:34254").unwrap());

// Check the capacity of the inner buffer
let capacity = buf_writer.capacity();
// Calculate how many bytes can be written without flushing
let without_flush = capacity - buf_writer.buffer().len();

相关用法


注:本文由纯净天空筛选整理自rust-lang.org大神的英文原创作品 std::io::BufWriter.capacity。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。