Struct futures::sink::Fanout [−][src]
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, Si2> Fanout<Si1, Si2> where
Si1: Sink,
Si2: Sink,
[src]
[−]
impl<Si1, Si2> Fanout<Si1, Si2> where
Si1: Sink,
Si2: Sink,
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, Si2> Sink for Fanout<Si1, Si2> where
Si1: Sink,
Si2: Sink<SinkItem = <Si1 as Sink>::SinkItem, SinkError = <Si1 as Sink>::SinkError>,
<Si1 as Sink>::SinkItem: Clone,
[src]
[+]
impl<Si1, Si2> Sink for Fanout<Si1, Si2> where
Si1: Sink,
Si2: Sink<SinkItem = <Si1 as Sink>::SinkItem, SinkError = <Si1 as Sink>::SinkError>,
<Si1 as Sink>::SinkItem: Clone,
impl<Si1, Si2> Debug for Fanout<Si1, Si2> where
Si1: Debug + Sink,
Si2: Debug + Sink,
<Si1 as Sink>::SinkItem: Debug,
<Si2 as Sink>::SinkItem: Debug,
[src]
[+]
impl<Si1, Si2> Debug for Fanout<Si1, Si2> where
Si1: Debug + Sink,
Si2: Debug + Sink,
<Si1 as Sink>::SinkItem: Debug,
<Si2 as Sink>::SinkItem: Debug,