Crates.io | tees |
lib.rs | tees |
version | 0.1.1 |
source | src |
created_at | 2020-11-20 17:13:18.252482 |
updated_at | 2020-11-20 17:13:18.252482 |
description | An adapter for readers which delegate reads to a writer |
homepage | |
repository | https://github.com/SOF3/tees |
max_upload_size | |
id | 314398 |
size | 5,223 |
This is a fork of the tee
library to support Seek
.
It implements Seek
by calling the corresponding Seek
on both input and the branched output.
Note that seek calls on the branched output are always absolute,
i.e. all calls are converted into SeekFrom::Start
calls based on the reader.seek()
return value.
The following are description taken from the original repo.
===
A rustlang adapter for readers which delegate read bytes to a writer, adapted from the standard library's std::io::Read#tee
which has since been deprecated.
Add the following to your Cargo.toml
file
[dependencies]
tees = "0.1.1"
let tee_reader = tee::TeeReader::new(reader, writer);
Doug Tangren (softprops) 2015