本文簡要介紹rust語言中 std::io::Take.limit
的用法。
用法
pub fn limit(&self) -> u64
返回此實例返回 EOF 之前可以讀取的字節數。
注意
如果底層 Read
實例達到EOF,則在讀取的字節數少於此方法指示的字節後,此實例可能會達到EOF
。
例子
use std::io;
use std::io::prelude::*;
use std::fs::File;
fn main() -> io::Result<()> {
let f = File::open("foo.txt")?;
// read at most five bytes
let handle = f.take(5);
println!("limit: {}", handle.limit());
Ok(())
}
相關用法
- Rust Take.set_limit用法及代碼示例
- Rust Take.get_ref用法及代碼示例
- Rust Take.get_mut用法及代碼示例
- Rust Take.into_inner用法及代碼示例
- Rust TcpStream.local_addr用法及代碼示例
- Rust TcpStream.peer_addr用法及代碼示例
- Rust TcpListener.take_error用法及代碼示例
- Rust TcpStream.set_nodelay用法及代碼示例
- Rust ToSocketAddrs用法及代碼示例
- Rust TcpStream.nodelay用法及代碼示例
- Rust ToOwned.to_owned用法及代碼示例
- Rust TcpListener.into_incoming用法及代碼示例
- Rust TcpStream.take_error用法及代碼示例
- Rust TcpListener.accept用法及代碼示例
- Rust ThreadId用法及代碼示例
- Rust TryIter用法及代碼示例
- Rust Try.from_output用法及代碼示例
- Rust Try用法及代碼示例
- Rust TryFrom用法及代碼示例
- Rust Thread.unpark用法及代碼示例
- Rust TcpStream.write_timeout用法及代碼示例
- Rust TcpListener.local_addr用法及代碼示例
- Rust TcpStream.peek用法及代碼示例
- Rust TcpStream.set_write_timeout用法及代碼示例
- Rust TcpListener.ttl用法及代碼示例
注:本文由純淨天空篩選整理自rust-lang.org大神的英文原創作品 std::io::Take.limit。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。