1 unstable release
Uses old Rust 2015
0.1.0 | Dec 15, 2015 |
---|
#13 in #sources
5,092 downloads per month
Used in sgxs-tools
4KB
broadcast
A rustlang adapter for writing to multiple sources, adapted from the standard library's std::io::Write#broadcast
which has since been deprecated.
api docs
rustdoc api documentation can be found here
examples
The currently unstable/deprecated std library function looks like this
let broadcaster = writera.broadcast(writerb);
In broadcast this looks like
let broadcaster = broadcast::BroadcastWriter::new(
writera, writerb
);
Doug Tangren (softprops) 2015