1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
//! This crate provides a collection of different variations of [std::io::Read].
//! At the moment, there's only [ReadBack]. Feel free to suggest other possible
//! [std::io::Read] variants which could be added to this collection.
//!
//! You'll likely want to use one of the following traits:
//! - [ReadBack]
//!
//! # Example with [ReadBack]
//! ```
//! use read_collection::ReadBack;
//! use std::io::Read;
//!
//! fn main() {
//! let values = [1, 2, 3];
//! let mut buffer = [0, 0];
//!
//! // How it could look like with `Read`:
//! assert_eq!(values.as_slice().read(&mut buffer).ok(), Some(2));
//! assert_eq!(buffer, [1, 2]);
//! println!("With Read: buffer = [{}, {}]", buffer[0], buffer[1]);
//!
//! // The read-back version:
//! assert_eq!(values.as_slice().read_back(&mut buffer).ok(), Some(2));
//! // [-----] and the buffer contains the value starting from the back!
//! assert_eq!(buffer, [2, 3]);
//! println!("With ReadBack: buffer = [{}, {}]", buffer[0], buffer[1]);
//! }
//! ```
//! Output:
//! ```text
//! With Read: buffer = [1, 2]
//! With ReadBack: buffer = [2, 3]
//! ```
// Bare metal platforms usually have very small amounts of RAM
// (in the order of hundreds of KB)
const DEFAULT_BUF_SIZE: usize = if cfg! else ;
pub use ;