Struct bitflags::__core::io::Broadcast [] [src]

pub struct Broadcast<T, U> {
    // some fields omitted
}
Deprecated since 1.6.0

: error handling semantics unclear and don't seem to have an ergonomic resolution

A Write adaptor which will write data to multiple locations.

This struct is generally created by calling broadcast() on a writer. Please see the documentation of broadcast() for more details.

Trait Implementations

impl<T, U> Write for Broadcast<T, U> where U: Write, T: Write

fn write(&mut self, data: &[u8]) -> Result<usize, Error>

fn flush(&mut self) -> Result<(), Error>

1.0.0fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>

1.0.0fn write_fmt(&mut self, fmt: Arguments) -> Result<(), Error>

1.0.0fn by_ref(&mut self) -> &mut Self

fn broadcast<W>(self, other: W) -> Broadcast<Self, W> where W: Write