Struct std::io::Tee
[−]
[src]
pub struct Tee<R, W> { // some fields omitted }
An adaptor which will emit all read data to a specified writer as well.
This struct is generally created by calling tee()
on a reader.
Please see the documentation of tee()
for more details.