[−][src]Struct futures_util::sink::Fanout
Sink that clones incoming items and forwards them to two sinks at the same time.
Backpressure from any downstream sink propagates up, which means that this sink can only process items as fast as its slowest downstream sink.
Methods
impl<Si1: Sink, Si2: Sink> Fanout<Si1, Si2>
[src]
[−]
impl<Si1: Sink, Si2: Sink> Fanout<Si1, Si2>
pub fn into_inner(self) -> (Si1, Si2)
[src]
[−]
pub fn into_inner(self) -> (Si1, Si2)
Consumes this combinator, returning the underlying sinks.
Note that this may discard intermediate state of this combinator, so care should be taken to avoid losing resources when this is called.
Trait Implementations
impl<Si1: Sink + Debug, Si2: Sink + Debug> Debug for Fanout<Si1, Si2> where
Si1::SinkItem: Debug,
Si2::SinkItem: Debug,
[src]
[+]
impl<Si1: Sink + Debug, Si2: Sink + Debug> Debug for Fanout<Si1, Si2> where
Si1::SinkItem: Debug,
Si2::SinkItem: Debug,
impl<Si1, Si2> Sink for Fanout<Si1, Si2> where
Si1: Sink,
Si1::SinkItem: Clone,
Si2: Sink<SinkItem = Si1::SinkItem, SinkError = Si1::SinkError>,
[src]
[+]
impl<Si1, Si2> Sink for Fanout<Si1, Si2> where
Si1: Sink,
Si1::SinkItem: Clone,
Si2: Sink<SinkItem = Si1::SinkItem, SinkError = Si1::SinkError>,