broadcast 0.1.0

A rustlang adapter for writing to multiple sources
Documentation
  • Coverage
  • 50%
    2 out of 4 items documented0 out of 2 items with examples
  • Size
  • Source code size: 6.06 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.43 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 11s Average build duration of successful builds.
  • all releases: 11s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • Documentation
  • softprops/broadcast
    5 1 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • softprops

broadcast

Build Status Coverage Status

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