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