#reader #iterator #byte #read #iter-read

iter-read

A Read implementation for iterators over u8 and related types

8 releases (3 stable)

1.1.0 Aug 24, 2024
1.0.1 Nov 30, 2023
0.3.1 Jan 24, 2022
0.3.0 Jun 17, 2020
0.1.0 Apr 24, 2016

#144 in Rust patterns

Download history 43306/week @ 2025-01-28 68408/week @ 2025-02-04 68801/week @ 2025-02-11 76291/week @ 2025-02-18 91139/week @ 2025-02-25 89060/week @ 2025-03-04 93638/week @ 2025-03-11 86220/week @ 2025-03-18 72151/week @ 2025-03-25 89390/week @ 2025-04-01 81700/week @ 2025-04-08 75970/week @ 2025-04-15 72439/week @ 2025-04-22 64702/week @ 2025-04-29 75590/week @ 2025-05-06 50748/week @ 2025-05-13

276,148 downloads per month
Used in 149 crates (10 directly)

MIT/Apache

16KB
310 lines

iter-read

Build status Latest Version

Documentation

This crate is a small library that provides a type that implements std::io::Read for iterators over bytes (u8) and sequences of it, and also Result<u8, E>, Result<Vec<u8>, E> etc.

Installation

This crate works with Cargo and can be found on crates.io with a Cargo.toml like:

[dependencies]
iter-read = "1.0"

Requirements

Minimum supported Rust version is 1.58.0. No other dependencies.

Usage

A simple example:

use std::io::Read;
use iter_read::IterRead;
let source = vec![1, 2, 7, 42, 123];
let mut reader = IterRead::new(source.iter());
let mut buf = vec![0; 3];
reader.read_exact(&mut buf).unwrap();
assert_eq!(buf, b"\x01\x02\x07");

No runtime deps

Features