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,
type SinkItem = <Si1 as Sink>::SinkItem
The type of value that the sink accepts.
type SinkError = <Si1 as Sink>::SinkError
The type of value produced by the sink when an error occurs.
fn poll_ready(
self: PinMut<Fanout<Si1, Si2>>,
cx: &mut Context
) -> Poll<Result<(), <Fanout<Si1, Si2> as Sink>::SinkError>>
[src]
fn poll_ready(
self: PinMut<Fanout<Si1, Si2>>,
cx: &mut Context
) -> Poll<Result<(), <Fanout<Si1, Si2> as Sink>::SinkError>>
Attempts to prepare the Sink
to receive a value. Read more
fn start_send(
self: PinMut<Fanout<Si1, Si2>>,
item: <Fanout<Si1, Si2> as Sink>::SinkItem
) -> Result<(), <Fanout<Si1, Si2> as Sink>::SinkError>
[src]
fn start_send(
self: PinMut<Fanout<Si1, Si2>>,
item: <Fanout<Si1, Si2> as Sink>::SinkItem
) -> Result<(), <Fanout<Si1, Si2> as Sink>::SinkError>
Begin the process of sending a value to the sink. Each call to this function must be proceeded by a successful call to poll_ready
which returned Ok(Poll::Ready(()))
. Read more
fn poll_flush(
self: PinMut<Fanout<Si1, Si2>>,
cx: &mut Context
) -> Poll<Result<(), <Fanout<Si1, Si2> as Sink>::SinkError>>
[src]
fn poll_flush(
self: PinMut<Fanout<Si1, Si2>>,
cx: &mut Context
) -> Poll<Result<(), <Fanout<Si1, Si2> as Sink>::SinkError>>
Flush any remaining output from this sink. Read more
fn poll_close(
self: PinMut<Fanout<Si1, Si2>>,
cx: &mut Context
) -> Poll<Result<(), <Fanout<Si1, Si2> as Sink>::SinkError>>
[src]
fn poll_close(
self: PinMut<Fanout<Si1, Si2>>,
cx: &mut Context
) -> Poll<Result<(), <Fanout<Si1, Si2> as Sink>::SinkError>>
Flush any remaining output and close this sink, if necessary. Read more
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,