Registry / utility / buf-redux

buf-redux

JSON →
library0.8.4rscratesunverified

Drop-in replacements for buffered I/O in `std::io` with extra features.

# Cargo.toml [dependencies] buf_redux = "0.8.4"
INSTALL
IMPORT
SIG · BUF-REDUX
B
buf-redux
utilityrustv0.8.4
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

BufReader
use buf_redux::BufReader;

Reads a line using a buffered reader with extra capacity.

use buf_redux::BufReader; use std::io::Cursor; fn main() { let data = Cursor::new(b"Hello, world!"); let mut reader = BufReader::new(data); let mut buf = String::new(); reader.read_line(&mut buf).unwrap(); println!("Read: {}", buf); }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
0.8.4latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
3 hits · last 30 days
node
2
Amazon
1
Resources
buf-redux — cargo add buf-redux · libregistry