ctrl-z
A composable reader to treat 0x1A as an end-of-file marker.
Historically, 0x1A (commonly referred to as CTRL-Z, ^Z, or a "substitute character") was used
in old systems to explicitly mark the end of a file. While modern systems no longer require this
practice, some legacy files still contain this byte to mark the end of a file. This library
provides a reader to treat 0x1A as the end of a file, rather than reading it as a regular byte.
Usage
This library provides a reader in the form of a struct named ReadToCtrlZ. As is common
practice, this reader is composable with other types implementing the
Read or
BufRead traits. The reader checks the
returned bytes for the presence of the EOF marker 0x1A and stops reading when it is encountered.
Example
For example, the reader defined below only reads until the 0x1A byte, at which point it stops
reading.
use ReadToCtrlZ;
let mut reader = new;
let mut output = Stringnew;
// Reading omits the final `0x1A` byte.
assert!;
assert_eq!;
Minimum Supported Rust Version
This crate is guaranteed to compile on stable rustc 1.0.0 and up.
License
This project is licensed under either of
- Apache License, Version 2.0 (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)
at your option.
Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.