Struct std::io::util::MultiWriterExperimental
[-]
[+]
[src]
pub struct MultiWriter { // some fields omitted }
A Writer
which multiplexes writes to a set of Writer
s.
The Writer
s are delegated to in order. If any Writer
returns an error,
that error is returned immediately and remaining Writer
s are not called.
Methods
impl MultiWriter
fn new(writers: Vec<Box<Writer + 'static>>) -> MultiWriter
Creates a new MultiWriter